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 UserCreateOptionsactive(Boolean active)UserCreateOptionsextra(Map<String,Object> extra)BooleangetActive()Map<String,Object>getExtra()StringgetPasswd()StringgetUser()
-
-
-
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
-
-