Class UpdateUserOptions
- java.lang.Object
-
- org.jclouds.openstack.keystone.v2_0.options.UpdateUserOptions
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
UpdateUserOptions.Builder
-
Constructor Summary
Constructors Constructor Description UpdateUserOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R extends HttpRequest>
RbindToRequest(R request, Object input)
<R extends HttpRequest>
RbindToRequest(R request, Map<String,Object> postParams)
creates and binds the POST payload to the request using parameters specified.UpdateUserOptions
email(String email)
UpdateUserOptions
enabled(boolean enabled)
boolean
equals(Object object)
String
getEmail()
Gets the user e-mailString
getName()
Gets the default user nameString
getPassword()
Gets the default passwordint
hashCode()
boolean
isEnabled()
UpdateUserOptions
name(String name)
A name can be defined when updating an user.UpdateUserOptions
password(String password)
protected com.google.common.base.MoreObjects.ToStringHelper
string()
String
toString()
-
-
-
Method Detail
-
string
protected com.google.common.base.MoreObjects.ToStringHelper string()
-
bindToRequest
public <R extends HttpRequest> R bindToRequest(R request, Map<String,Object> postParams)
Description copied from interface:MapBinder
creates and binds the POST payload to the request using parameters specified.- Specified by:
bindToRequest
in interfaceMapBinder
- See Also:
PayloadParam
-
getName
public String getName()
Gets the default user name
-
name
public UpdateUserOptions name(String name)
A name can be defined when updating an user.
-
getPassword
public String getPassword()
Gets the default password
-
password
public UpdateUserOptions password(String password)
-
getEmail
public String getEmail()
Gets the user e-mail
-
email
public UpdateUserOptions email(String email)
- See Also:
getEmail()
-
isEnabled
public boolean isEnabled()
-
enabled
public UpdateUserOptions enabled(boolean enabled)
-
bindToRequest
public <R extends HttpRequest> R bindToRequest(R request, Object input)
- Specified by:
bindToRequest
in interfaceBinder
-
-