Package com.arangodb.model
Class UserUpdateOptions
- java.lang.Object
-
- com.arangodb.model.UserUpdateOptions
-
public final class UserUpdateOptions extends Object
- Author:
- Mark Vollmary
- See Also:
- API Documentation
-
-
Constructor Summary
Constructors Constructor Description UserUpdateOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UserUpdateOptions
active(Boolean active)
UserUpdateOptions
extra(Map<String,Object> extra)
Boolean
getActive()
Map<String,Object>
getExtra()
String
getPasswd()
UserUpdateOptions
passwd(String passwd)
-
-
-
Method Detail
-
getPasswd
public String getPasswd()
-
passwd
public UserUpdateOptions passwd(String passwd)
- Parameters:
passwd
- The user password- Returns:
- options
-
getActive
public Boolean getActive()
-
active
public UserUpdateOptions active(Boolean active)
- Parameters:
active
- An optional flag that specifies whether the user is active. If not specified, this will default to true- Returns:
- options
-
extra
public UserUpdateOptions extra(Map<String,Object> extra)
- Parameters:
extra
- Optional data about the user- Returns:
- options
-
-