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

com.softlayer.api.service.configuration.template.Attribute Maven / Gradle / Ivy

The newest version!
package com.softlayer.api.service.configuration.template;

import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.Entity;
import com.softlayer.api.service.configuration.Template;

/**
 * Configuration template attribute class contains supplementary information for a configuration template. 
 *
 * @see SoftLayer_Configuration_Template_Attribute
 */
@ApiType("SoftLayer_Configuration_Template_Attribute")
public class Attribute extends Entity {

    @ApiProperty
    protected Template configurationTemplate;

    public Template getConfigurationTemplate() {
        return configurationTemplate;
    }

    public void setConfigurationTemplate(Template configurationTemplate) {
        this.configurationTemplate = configurationTemplate;
    }

    /**
     * Value of a configuration template attribute
     */
    @ApiProperty(canBeNullOrNotSet = true)
    protected String value;

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        valueSpecified = true;
        this.value = value;
    }

    protected boolean valueSpecified;

    public boolean isValueSpecified() {
        return valueSpecified;
    }

    public void unsetValue() {
        value = null;
        valueSpecified = false;
    }

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

        public com.softlayer.api.service.configuration.Template.Mask configurationTemplate() {
            return withSubMask("configurationTemplate", com.softlayer.api.service.configuration.Template.Mask.class);
        }

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

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy