Class PutRoleMappingRequest
- java.lang.Object
-
- org.elasticsearch.client.security.PutRoleMappingRequest
-
- All Implemented Interfaces:
Validatable,ToXContent,ToXContentObject
public final class PutRoleMappingRequest extends Object implements Validatable, ToXContentObject
Request object to create or update a role mapping.
-
-
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
-
Fields inherited from interface org.elasticsearch.client.Validatable
EMPTY
-
-
Constructor Summary
Constructors Constructor Description PutRoleMappingRequest(String name, boolean enabled, List<String> roles, List<TemplateRoleName> templates, RoleMapperExpression rules, Map<String,Object> metadata, RefreshPolicy refreshPolicy)PutRoleMappingRequest(String name, boolean enabled, List<String> roles, RoleMapperExpression rules, Map<String,Object> metadata, RefreshPolicy refreshPolicy)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)Map<String,Object>getMetadata()StringgetName()RefreshPolicygetRefreshPolicy()List<String>getRoles()List<TemplateRoleName>getRoleTemplates()RoleMapperExpressiongetRules()inthashCode()booleanisEnabled()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)-
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
-
Methods inherited from interface org.elasticsearch.client.Validatable
validate
-
-
-
-
Constructor Detail
-
PutRoleMappingRequest
@Deprecated public PutRoleMappingRequest(String name, boolean enabled, List<String> roles, RoleMapperExpression rules, @Nullable Map<String,Object> metadata, @Nullable RefreshPolicy refreshPolicy)
Deprecated.
-
PutRoleMappingRequest
public PutRoleMappingRequest(String name, boolean enabled, List<String> roles, List<TemplateRoleName> templates, RoleMapperExpression rules, @Nullable Map<String,Object> metadata, @Nullable RefreshPolicy refreshPolicy)
-
-
Method Detail
-
getName
public String getName()
-
isEnabled
public boolean isEnabled()
-
getRoleTemplates
public List<TemplateRoleName> getRoleTemplates()
-
getRules
public RoleMapperExpression getRules()
-
getRefreshPolicy
public RefreshPolicy getRefreshPolicy()
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
IOException
-
-