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 classRequiredUser.Mask
-
Field Summary
Fields Modifier and Type Field Description protected StringdefaultPasswordIf the default password is set the user will be created with that password, otherwise a random password is generated.protected booleandefaultPasswordSpecifiedprotected StringusernameIf this software has a required user (such as "root") this string contains it's name.protected booleanusernameSpecified-
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 StringgetDefaultPassword()StringgetUsername()booleanisDefaultPasswordSpecified()booleanisUsernameSpecified()voidsetDefaultPassword(String defaultPassword)voidsetUsername(String username)voidunsetDefaultPassword()voidunsetUsername()-
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()
-
-