com.softlayer.api.service.network.message.delivery.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.message.delivery;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.Entity;
import com.softlayer.api.service.network.message.Delivery;
/**
* @see SoftLayer_Network_Message_Delivery_Attribute
*/
@ApiType("SoftLayer_Network_Message_Delivery_Attribute")
public class Attribute extends Entity {
@ApiProperty
protected Delivery networkMessageDelivery;
public Delivery getNetworkMessageDelivery() {
return networkMessageDelivery;
}
public void setNetworkMessageDelivery(Delivery networkMessageDelivery) {
this.networkMessageDelivery = networkMessageDelivery;
}
@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.message.Delivery.Mask networkMessageDelivery() {
return withSubMask("networkMessageDelivery", com.softlayer.api.service.network.message.Delivery.Mask.class);
}
public Mask value() {
withLocalProperty("value");
return this;
}
}
}