Class RequiredUser
- java.lang.Object
-
- com.softlayer.api.Type
-
- com.softlayer.api.service.Entity
-
- com.softlayer.api.service.software.description.RequiredUser
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RequiredUser.Mask
-
Field Summary
Fields Modifier and Type Field Description protected String
defaultPassword
If the default password is set the user will be created with that password, otherwise a random password is generated.protected boolean
defaultPasswordSpecified
protected String
username
If this software has a required user (such as "root") this string contains it's name.protected boolean
usernameSpecified
-
Fields inherited from class com.softlayer.api.Type
unknownProperties
-
-
Constructor Summary
Constructors Constructor Description RequiredUser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDefaultPassword()
String
getUsername()
boolean
isDefaultPasswordSpecified()
boolean
isUsernameSpecified()
void
setDefaultPassword(String defaultPassword)
void
setUsername(String username)
void
unsetDefaultPassword()
void
unsetUsername()
-
Methods inherited from class com.softlayer.api.Type
getUnknownProperties, setUnknownProperties
-
-
-
-
Field Detail
-
defaultPassword
@ApiProperty(canBeNullOrNotSet=true) protected String defaultPassword
If the default password is set the user will be created with that password, otherwise a random password is generated.
-
defaultPasswordSpecified
protected boolean defaultPasswordSpecified
-
username
@ApiProperty(canBeNullOrNotSet=true) protected String username
If this software has a required user (such as "root") this string contains it's name.
-
usernameSpecified
protected boolean usernameSpecified
-
-
Method Detail
-
getDefaultPassword
public String getDefaultPassword()
-
setDefaultPassword
public void setDefaultPassword(String defaultPassword)
-
isDefaultPasswordSpecified
public boolean isDefaultPasswordSpecified()
-
unsetDefaultPassword
public void unsetDefaultPassword()
-
getUsername
public String getUsername()
-
setUsername
public void setUsername(String username)
-
isUsernameSpecified
public boolean isUsernameSpecified()
-
unsetUsername
public void unsetUsername()
-
-