Class SiteMachineKey
- java.lang.Object
-
- com.microsoft.azure.management.appservice.SiteMachineKey
-
public class SiteMachineKey extends Object
MachineKey of an app.
-
-
Constructor Summary
Constructors Constructor Description SiteMachineKey()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringdecryption()Get algorithm used for decryption.StringdecryptionKey()Get decryption key.Stringvalidation()Get machineKey validation.StringvalidationKey()Get validation key.SiteMachineKeywithDecryption(String decryption)Set algorithm used for decryption.SiteMachineKeywithDecryptionKey(String decryptionKey)Set decryption key.SiteMachineKeywithValidation(String validation)Set machineKey validation.SiteMachineKeywithValidationKey(String validationKey)Set validation key.
-
-
-
Method Detail
-
validation
public String validation()
Get machineKey validation.- Returns:
- the validation value
-
withValidation
public SiteMachineKey withValidation(String validation)
Set machineKey validation.- Parameters:
validation- the validation value to set- Returns:
- the SiteMachineKey object itself.
-
validationKey
public String validationKey()
Get validation key.- Returns:
- the validationKey value
-
withValidationKey
public SiteMachineKey withValidationKey(String validationKey)
Set validation key.- Parameters:
validationKey- the validationKey value to set- Returns:
- the SiteMachineKey object itself.
-
decryption
public String decryption()
Get algorithm used for decryption.- Returns:
- the decryption value
-
withDecryption
public SiteMachineKey withDecryption(String decryption)
Set algorithm used for decryption.- Parameters:
decryption- the decryption value to set- Returns:
- the SiteMachineKey object itself.
-
decryptionKey
public String decryptionKey()
Get decryption key.- Returns:
- the decryptionKey value
-
withDecryptionKey
public SiteMachineKey withDecryptionKey(String decryptionKey)
Set decryption key.- Parameters:
decryptionKey- the decryptionKey value to set- Returns:
- the SiteMachineKey object itself.
-
-