Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.appservice; import com.fasterxml.jackson.annotation.JsonProperty;
MachineKey of an app.
/** * MachineKey of an app. */
public class SiteMachineKey {
MachineKey validation.
/** * MachineKey validation. */
@JsonProperty(value = "validation") private String validation;
Validation key.
/** * Validation key. */
@JsonProperty(value = "validationKey") private String validationKey;
Algorithm used for decryption.
/** * Algorithm used for decryption. */
@JsonProperty(value = "decryption") private String decryption;
Decryption key.
/** * Decryption key. */
@JsonProperty(value = "decryptionKey") private String decryptionKey;
Get machineKey validation.
Returns:the validation value
/** * Get machineKey validation. * * @return the validation value */
public String validation() { return this.validation; }
Set machineKey validation.
Params:
  • validation – the validation value to set
Returns:the SiteMachineKey object itself.
/** * Set machineKey validation. * * @param validation the validation value to set * @return the SiteMachineKey object itself. */
public SiteMachineKey withValidation(String validation) { this.validation = validation; return this; }
Get validation key.
Returns:the validationKey value
/** * Get validation key. * * @return the validationKey value */
public String validationKey() { return this.validationKey; }
Set validation key.
Params:
  • validationKey – the validationKey value to set
Returns:the SiteMachineKey object itself.
/** * Set validation key. * * @param validationKey the validationKey value to set * @return the SiteMachineKey object itself. */
public SiteMachineKey withValidationKey(String validationKey) { this.validationKey = validationKey; return this; }
Get algorithm used for decryption.
Returns:the decryption value
/** * Get algorithm used for decryption. * * @return the decryption value */
public String decryption() { return this.decryption; }
Set algorithm used for decryption.
Params:
  • decryption – the decryption value to set
Returns:the SiteMachineKey object itself.
/** * Set algorithm used for decryption. * * @param decryption the decryption value to set * @return the SiteMachineKey object itself. */
public SiteMachineKey withDecryption(String decryption) { this.decryption = decryption; return this; }
Get decryption key.
Returns:the decryptionKey value
/** * Get decryption key. * * @return the decryptionKey value */
public String decryptionKey() { return this.decryptionKey; }
Set decryption key.
Params:
  • decryptionKey – the decryptionKey value to set
Returns:the SiteMachineKey object itself.
/** * Set decryption key. * * @param decryptionKey the decryptionKey value to set * @return the SiteMachineKey object itself. */
public SiteMachineKey withDecryptionKey(String decryptionKey) { this.decryptionKey = decryptionKey; return this; } }