Class PutUserRequest
- java.lang.Object
-
- org.elasticsearch.client.security.PutUserRequest
-
- All Implemented Interfaces:
Validatable
,ToXContent
,ToXContentObject
public final class PutUserRequest extends java.lang.Object implements Validatable, ToXContentObject
Request object to create or update a user in the native realm.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
-
Field Summary
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description PutUserRequest(User user, char[] password, boolean enabled, RefreshPolicy refreshPolicy)
Creates a new request that is used to create or update a user in the native realm.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
char[]
getPassword()
RefreshPolicy
getRefreshPolicy()
User
getUser()
int
hashCode()
boolean
isEnabled()
XContentBuilder
toXContent(XContentBuilder builder, ToXContent.Params params)
java.util.Optional<ValidationException>
validate()
Perform validation.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
-
-
-
Constructor Detail
-
PutUserRequest
public PutUserRequest(User user, @Nullable char[] password, boolean enabled, @Nullable RefreshPolicy refreshPolicy)
Creates a new request that is used to create or update a user in the native realm.- Parameters:
user
- the user to be created or updatedpassword
- the password of the user. The password array is not modified by this class. It is the responsibility of the caller to clear the password after receiving a response.enabled
- true if the user is enabled and allowed to access elasticsearchrefreshPolicy
- the refresh policy for the request.
-
-
Method Detail
-
getUser
public User getUser()
-
getPassword
@Nullable public char[] getPassword()
-
isEnabled
public boolean isEnabled()
-
getRefreshPolicy
public RefreshPolicy getRefreshPolicy()
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
validate
public java.util.Optional<ValidationException> validate()
Description copied from interface:Validatable
Perform validation. This method does not have to be overridden in the event that no validation needs to be done, or the validation was done during object construction time. AValidationException
that is not null is assumed to contain validation errors and will be thrown.- Specified by:
validate
in interfaceValidatable
- Returns:
- An
Optional
ValidationException
that contains a list of validation errors.
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContent
in interfaceToXContent
- Throws:
java.io.IOException
-
-