Class Status
- java.lang.Object
-
- com.softlayer.api.Type
-
- com.softlayer.api.service.Entity
-
- com.softlayer.api.service.network.subnet.registration.Status
-
@ApiType("SoftLayer_Network_Subnet_Registration_Status") public class Status extends Entity
Subnet Registration Status objects describe the current status of a subnet registration.
The standard values for these objects are as follows:- OPEN - Indicates that the registration object is new and has yet to be submitted to the RIR
- PENDING - Indicates that the registration object has been submitted to the RIR and is awaiting response
- COMPLETE - Indicates that the RIR action has completed
- DELETED - Indicates that the registration object has been gracefully removed is no longer valid
- CANCELLED - Indicates that the registration object has been abruptly removed is no longer valid
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Status.Mask
static interface
Status.Service
static interface
Status.ServiceAsync
-
Field Summary
Fields Modifier and Type Field Description protected GregorianCalendar
createDate
protected boolean
createDateSpecified
protected Long
id
Unique numeric ID of the status objectprotected boolean
idSpecified
protected String
keyName
Code-friendly string name of the statusprotected boolean
keyNameSpecified
protected GregorianCalendar
modifyDate
protected boolean
modifyDateSpecified
protected String
name
Human-readable name of the statusprotected boolean
nameSpecified
-
Fields inherited from class com.softlayer.api.Type
unknownProperties
-
-
Constructor Summary
Constructors Constructor Description Status()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Status.Service
asService(ApiClient client)
GregorianCalendar
getCreateDate()
Long
getId()
String
getKeyName()
GregorianCalendar
getModifyDate()
String
getName()
boolean
isCreateDateSpecified()
boolean
isIdSpecified()
boolean
isKeyNameSpecified()
boolean
isModifyDateSpecified()
boolean
isNameSpecified()
static Status.Service
service(ApiClient client)
static Status.Service
service(ApiClient client, Long id)
void
setCreateDate(GregorianCalendar createDate)
void
setId(Long id)
void
setKeyName(String keyName)
void
setModifyDate(GregorianCalendar modifyDate)
void
setName(String name)
void
unsetCreateDate()
void
unsetId()
void
unsetKeyName()
void
unsetModifyDate()
void
unsetName()
-
Methods inherited from class com.softlayer.api.Type
getUnknownProperties, setUnknownProperties
-
-
-
-
Field Detail
-
createDate
@ApiProperty(canBeNullOrNotSet=true) protected GregorianCalendar createDate
-
createDateSpecified
protected boolean createDateSpecified
-
id
@ApiProperty(canBeNullOrNotSet=true) protected Long id
Unique numeric ID of the status object
-
idSpecified
protected boolean idSpecified
-
keyName
@ApiProperty(canBeNullOrNotSet=true) protected String keyName
Code-friendly string name of the status
-
keyNameSpecified
protected boolean keyNameSpecified
-
modifyDate
@ApiProperty(canBeNullOrNotSet=true) protected GregorianCalendar modifyDate
-
modifyDateSpecified
protected boolean modifyDateSpecified
-
name
@ApiProperty(canBeNullOrNotSet=true) protected String name
Human-readable name of the status
-
nameSpecified
protected boolean nameSpecified
-
-
Method Detail
-
getCreateDate
public GregorianCalendar getCreateDate()
-
setCreateDate
public void setCreateDate(GregorianCalendar createDate)
-
isCreateDateSpecified
public boolean isCreateDateSpecified()
-
unsetCreateDate
public void unsetCreateDate()
-
getId
public Long getId()
-
setId
public void setId(Long id)
-
isIdSpecified
public boolean isIdSpecified()
-
unsetId
public void unsetId()
-
getKeyName
public String getKeyName()
-
setKeyName
public void setKeyName(String keyName)
-
isKeyNameSpecified
public boolean isKeyNameSpecified()
-
unsetKeyName
public void unsetKeyName()
-
getModifyDate
public GregorianCalendar getModifyDate()
-
setModifyDate
public void setModifyDate(GregorianCalendar modifyDate)
-
isModifyDateSpecified
public boolean isModifyDateSpecified()
-
unsetModifyDate
public void unsetModifyDate()
-
getName
public String getName()
-
setName
public void setName(String name)
-
isNameSpecified
public boolean isNameSpecified()
-
unsetName
public void unsetName()
-
asService
public Status.Service asService(ApiClient client)
-
service
public static Status.Service service(ApiClient client)
-
service
public static Status.Service service(ApiClient client, Long id)
-
-