com.softlayer.api.service.security.SecureTransportCipher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of softlayer-api-client Show documentation
Show all versions of softlayer-api-client Show documentation
API client for accessing the SoftLayer API
package com.softlayer.api.service.security;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.Entity;
/**
* Encryption algorithm intended for use in SSL/TLS communications
*
* @see SoftLayer_Security_SecureTransportCipher
*/
@ApiType("SoftLayer_Security_SecureTransportCipher")
public class SecureTransportCipher extends Entity {
/**
* Unique identifier for the encryption algorithm
*/
@ApiProperty(canBeNullOrNotSet = true)
protected String keyName;
public String getKeyName() {
return keyName;
}
public void setKeyName(String keyName) {
keyNameSpecified = true;
this.keyName = keyName;
}
protected boolean keyNameSpecified;
public boolean isKeyNameSpecified() {
return keyNameSpecified;
}
public void unsetKeyName() {
keyName = null;
keyNameSpecified = false;
}
public static class Mask extends com.softlayer.api.service.Entity.Mask {
public Mask keyName() {
withLocalProperty("keyName");
return this;
}
}
}