Uses of Class
org.elasticsearch.client.security.RefreshPolicy
-
Packages that use RefreshPolicy Package Description org.elasticsearch.client.security -
-
Uses of RefreshPolicy in org.elasticsearch.client.security
Methods in org.elasticsearch.client.security that return RefreshPolicy Modifier and Type Method Description static RefreshPolicyRefreshPolicy. getDefault()Get the default refresh policy, which isNONERefreshPolicyChangePasswordRequest. getRefreshPolicy()RefreshPolicyCreateApiKeyRequest. getRefreshPolicy()RefreshPolicyDeletePrivilegesRequest. getRefreshPolicy()RefreshPolicyDeleteRoleMappingRequest. getRefreshPolicy()RefreshPolicyDeleteRoleRequest. getRefreshPolicy()RefreshPolicyDeleteUserRequest. getRefreshPolicy()RefreshPolicyPutPrivilegesRequest. getRefreshPolicy()RefreshPolicyPutRoleMappingRequest. getRefreshPolicy()RefreshPolicyPutRoleRequest. getRefreshPolicy()RefreshPolicyPutUserRequest. getRefreshPolicy()RefreshPolicySetUserEnabledRequest. getRefreshPolicy()static RefreshPolicyRefreshPolicy. valueOf(String name)Returns the enum constant of this type with the specified name.static RefreshPolicy[]RefreshPolicy. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.elasticsearch.client.security with parameters of type RefreshPolicy Modifier and Type Method Description static PutUserRequestPutUserRequest. updateUser(User user, boolean enabled, RefreshPolicy refreshPolicy)Update an existing user in the native realm without modifying their password.static PutUserRequestPutUserRequest. withPassword(User user, char[] password, boolean enabled, RefreshPolicy refreshPolicy)Create or update a user in the native realm, with the user's new or updated password specified in plaintext.static PutUserRequestPutUserRequest. withPasswordHash(User user, char[] passwordHash, boolean enabled, RefreshPolicy refreshPolicy)Create or update a user in the native realm, with the user's new or updated password specified as a cryptographic hash.Constructors in org.elasticsearch.client.security with parameters of type RefreshPolicy Constructor Description ChangePasswordRequest(String username, char[] password, RefreshPolicy refreshPolicy)CreateApiKeyRequest(String name, List<Role> roles, TimeValue expiration, RefreshPolicy refreshPolicy)Create API Key request constructorDeletePrivilegesRequest(String application, String[] privileges, RefreshPolicy refreshPolicy)Creates a newDeletePrivilegesRequest.DeleteRoleMappingRequest(String name, RefreshPolicy refreshPolicy)Constructor for DeleteRoleMappingRequestDeleteRoleRequest(String name, RefreshPolicy refreshPolicy)DeleteUserRequest(String name, RefreshPolicy refreshPolicy)DisableUserRequest(String username, RefreshPolicy refreshPolicy)EnableUserRequest(String username, RefreshPolicy refreshPolicy)PutPrivilegesRequest(List<ApplicationPrivilege> privileges, RefreshPolicy refreshPolicy)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.PutRoleRequest(Role role, RefreshPolicy refreshPolicy)PutUserRequest(User user, char[] password, boolean enabled, RefreshPolicy refreshPolicy)
-