Package com.arangodb.model
Class UserUpdateOptions
- java.lang.Object
-
- com.arangodb.model.UserUpdateOptions
-
public final class UserUpdateOptions extends Object
- Author:
- Mark Vollmary
-
-
Constructor Summary
Constructors Constructor Description UserUpdateOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UserUpdateOptionsactive(Boolean active)UserUpdateOptionsextra(Map<String,Object> extra)BooleangetActive()Map<String,Object>getExtra()StringgetPasswd()UserUpdateOptionspasswd(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
-
-