Class UserConfiguration
- java.lang.Object
-
- com.morpheusdata.model.provisioning.UserConfiguration
-
public class UserConfiguration extends java.lang.Object
Light-weight representation of user specific data- Since:
- 0.9.0
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
displayName
the display name for the userjava.util.List<java.lang.String>
keys
the public keys for the userjava.lang.String
password
the password for the userjava.lang.String
serverGroup
the server group for the userjava.lang.Boolean
sudoUser
whether the user should be a sudo userjava.lang.String
username
the username for the user
-
Constructor Summary
Constructors Constructor Description UserConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Map
toMap()
-
-
-
Field Detail
-
username
public java.lang.String username
the username for the user
-
password
public java.lang.String password
the password for the user
-
displayName
public java.lang.String displayName
the display name for the user
-
keys
public java.util.List<java.lang.String> keys
the public keys for the user
-
serverGroup
public java.lang.String serverGroup
the server group for the user
-
sudoUser
public java.lang.Boolean sudoUser
whether the user should be a sudo user
-
-