Class KeySignParameters
- java.lang.Object
-
- com.microsoft.azure.keyvault.models.KeySignParameters
-
public class KeySignParameters extends Object
The key operations parameters.
-
-
Constructor Summary
Constructors Constructor Description KeySignParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JsonWebKeySignatureAlgorithmalgorithm()Get the algorithm value.byte[]value()Get the value value.KeySignParameterswithAlgorithm(JsonWebKeySignatureAlgorithm algorithm)Set the algorithm value.KeySignParameterswithValue(byte[] value)Set the value value.
-
-
-
Method Detail
-
algorithm
public JsonWebKeySignatureAlgorithm algorithm()
Get the algorithm value.- Returns:
- the algorithm value
-
withAlgorithm
public KeySignParameters withAlgorithm(JsonWebKeySignatureAlgorithm algorithm)
Set the algorithm value.- Parameters:
algorithm- the algorithm value to set- Returns:
- the KeySignParameters object itself.
-
value
public byte[] value()
Get the value value.- Returns:
- the value value
-
withValue
public KeySignParameters withValue(byte[] value)
Set the value value.- Parameters:
value- the value value to set- Returns:
- the KeySignParameters object itself.
-
-