All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.softlayer.api.service.security.SecureTransportProtocol Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show newest version
package com.softlayer.api.service.security;

import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.Entity;
import com.softlayer.api.service.security.SecureTransportCipher;
import java.util.ArrayList;
import java.util.List;

/**
 * Protocol intended for use in secure communications
 *
 * @see SoftLayer_Security_SecureTransportProtocol
 */
@ApiType("SoftLayer_Security_SecureTransportProtocol")
public class SecureTransportProtocol extends Entity {

    /**
     * Unique identifier for the protocol
     */
    @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;
    }

    /**
     * List of the supported encryption ciphers
     */
    @ApiProperty(canBeNullOrNotSet = true)
    protected List supportedSecureTransportCiphers;

    public List getSupportedSecureTransportCiphers() {
        if (supportedSecureTransportCiphers == null) {
            supportedSecureTransportCiphers = new ArrayList();
        }
        return supportedSecureTransportCiphers;
    }

    protected boolean supportedSecureTransportCiphersSpecified;

    public boolean isSupportedSecureTransportCiphersSpecified() {
        return supportedSecureTransportCiphersSpecified;
    }

    public void unsetSupportedSecureTransportCiphers() {
        supportedSecureTransportCiphers = null;
        supportedSecureTransportCiphersSpecified = false;
    }

    public static class Mask extends com.softlayer.api.service.Entity.Mask {

        public Mask keyName() {
            withLocalProperty("keyName");
            return this;
        }

        public SecureTransportCipher.Mask supportedSecureTransportCiphers() {
            return withSubMask("supportedSecureTransportCiphers", SecureTransportCipher.Mask.class);
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy