Class DeleteRoleMappingRequest
- java.lang.Object
-
- org.elasticsearch.client.security.DeleteRoleMappingRequest
-
- All Implemented Interfaces:
Validatable
public final class DeleteRoleMappingRequest extends Object implements Validatable
Request object to delete a role mapping.
-
-
Field Summary
-
Fields inherited from interface org.elasticsearch.client.Validatable
EMPTY
-
-
Constructor Summary
Constructors Constructor Description DeleteRoleMappingRequest(String name, RefreshPolicy refreshPolicy)Constructor for DeleteRoleMappingRequest
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)StringgetName()RefreshPolicygetRefreshPolicy()inthashCode()-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.client.Validatable
validate
-
-
-
-
Constructor Detail
-
DeleteRoleMappingRequest
public DeleteRoleMappingRequest(String name, @Nullable RefreshPolicy refreshPolicy)
Constructor for DeleteRoleMappingRequest- Parameters:
name- role mapping name to be deletedrefreshPolicy- refresh policyRefreshPolicyfor the request, defaults toRefreshPolicy.getDefault()
-
-