Class Attribute
- java.lang.Object
-
- com.softlayer.api.Type
-
- com.softlayer.api.service.Entity
-
- com.softlayer.api.service.virtual.guest.Attribute
-
- Direct Known Subclasses:
UserData
@ApiType("SoftLayer_Virtual_Guest_Attribute") public class Attribute extends Entity
- See Also:
- SoftLayer_Virtual_Guest_Attribute
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Attribute.Mask
-
Field Summary
Fields Modifier and Type Field Description protected Guest
guest
protected Type
type
protected String
value
A guest attribute's value.protected boolean
valueSpecified
-
Fields inherited from class com.softlayer.api.Type
unknownProperties
-
-
Constructor Summary
Constructors Constructor Description Attribute()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Guest
getGuest()
Type
getType()
String
getValue()
boolean
isValueSpecified()
void
setGuest(Guest guest)
void
setType(Type type)
void
setValue(String value)
void
unsetValue()
-
Methods inherited from class com.softlayer.api.Type
getUnknownProperties, setUnknownProperties
-
-
-
-
Field Detail
-
guest
@ApiProperty protected Guest guest
-
type
@ApiProperty protected Type type
-
value
@ApiProperty(canBeNullOrNotSet=true) protected String value
A guest attribute's value.
-
valueSpecified
protected boolean valueSpecified
-
-
Method Detail
-
getGuest
public Guest getGuest()
-
setGuest
public void setGuest(Guest guest)
-
getType
public Type getType()
-
setType
public void setType(Type type)
-
getValue
public String getValue()
-
setValue
public void setValue(String value)
-
isValueSpecified
public boolean isValueSpecified()
-
unsetValue
public void unsetValue()
-
-