Package net.webpdf.wsclient.openapi
Class UserConfigUser
- java.lang.Object
-
- net.webpdf.wsclient.openapi.UserConfigUser
-
public class UserConfigUser extends Object
Defines the attributes of a user.
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_PASSWORDstatic StringJSON_PROPERTY_ROLESstatic StringJSON_PROPERTY_UNIQUE_IDstatic StringJSON_PROPERTY_USERNAME
-
Constructor Summary
Constructors Constructor Description UserConfigUser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)@Nullable StringgetPassword()The password of the user.@Nullable StringgetRoles()The roles of the user.@Nullable StringgetUniqueId()The unique ID associated with the user.@Nullable StringgetUsername()The name of the user.inthashCode()UserConfigUserpassword(String password)UserConfigUserroles(String roles)voidsetPassword(String password)voidsetRoles(String roles)voidsetUniqueId(String uniqueId)voidsetUsername(String username)StringtoString()UserConfigUseruniqueId(String uniqueId)UserConfigUserusername(String username)
-
-
-
Field Detail
-
JSON_PROPERTY_PASSWORD
public static final String JSON_PROPERTY_PASSWORD
- See Also:
- Constant Field Values
-
JSON_PROPERTY_ROLES
public static final String JSON_PROPERTY_ROLES
- See Also:
- Constant Field Values
-
JSON_PROPERTY_UNIQUE_ID
public static final String JSON_PROPERTY_UNIQUE_ID
- See Also:
- Constant Field Values
-
JSON_PROPERTY_USERNAME
public static final String JSON_PROPERTY_USERNAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
password
public UserConfigUser password(String password)
-
getPassword
@Nullable public @Nullable String getPassword()
The password of the user.- Returns:
- password
-
setPassword
public void setPassword(String password)
-
roles
public UserConfigUser roles(String roles)
-
getRoles
@Nullable public @Nullable String getRoles()
The roles of the user.- Returns:
- roles
-
setRoles
public void setRoles(String roles)
-
uniqueId
public UserConfigUser uniqueId(String uniqueId)
-
getUniqueId
@Nullable public @Nullable String getUniqueId()
The unique ID associated with the user.- Returns:
- uniqueId
-
setUniqueId
public void setUniqueId(String uniqueId)
-
username
public UserConfigUser username(String username)
-
getUsername
@Nullable public @Nullable String getUsername()
The name of the user.- Returns:
- username
-
setUsername
public void setUsername(String username)
-
-