Package com.arangodb.model
Class UserCreateOptions
- java.lang.Object
-
- com.arangodb.model.UserCreateOptions
-
public final class UserCreateOptions extends Object
- Author:
- Mark Vollmary
-
-
Constructor Summary
Constructors Constructor Description UserCreateOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UserCreateOptions
active(Boolean active)
UserCreateOptions
extra(Map<String,Object> extra)
Boolean
getActive()
Map<String,Object>
getExtra()
String
getPasswd()
String
getUser()
-
-
-
Method Detail
-
getUser
public String getUser()
-
getPasswd
public String getPasswd()
-
getActive
public Boolean getActive()
-
active
public UserCreateOptions 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 UserCreateOptions extra(Map<String,Object> extra)
- Parameters:
extra
- Optional data about the user- Returns:
- options
-
-