com.softlayer.api.service.network.service.resource.Attribute 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.network.service.resource;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.Entity;
import com.softlayer.api.service.network.service.Resource;
import com.softlayer.api.service.network.service.resource.attribute.Type;
/**
* @see SoftLayer_Network_Service_Resource_Attribute
*/
@ApiType("SoftLayer_Network_Service_Resource_Attribute")
public class Attribute extends Entity {
@ApiProperty
protected Type attributeType;
public Type getAttributeType() {
return attributeType;
}
public void setAttributeType(Type attributeType) {
this.attributeType = attributeType;
}
@ApiProperty
protected Resource serviceResource;
public Resource getServiceResource() {
return serviceResource;
}
public void setServiceResource(Resource serviceResource) {
this.serviceResource = serviceResource;
}
@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.network.service.resource.attribute.Type.Mask attributeType() {
return withSubMask("attributeType", com.softlayer.api.service.network.service.resource.attribute.Type.Mask.class);
}
public com.softlayer.api.service.network.service.Resource.Mask serviceResource() {
return withSubMask("serviceResource", com.softlayer.api.service.network.service.Resource.Mask.class);
}
public Mask value() {
withLocalProperty("value");
return this;
}
}
}