Class CreateTokenRequest
java.lang.Object
org.elasticsearch.client.security.CreateTokenRequest
- All Implemented Interfaces:
Validatable,org.elasticsearch.xcontent.ToXContent,org.elasticsearch.xcontent.ToXContentObject
public final class CreateTokenRequest
extends Object
implements Validatable, org.elasticsearch.xcontent.ToXContentObject
Request to create a new OAuth2 token from the Elasticsearch cluster.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.xcontent.ToXContent
org.elasticsearch.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.xcontent.ToXContent.MapParams, org.elasticsearch.xcontent.ToXContent.Params -
Field Summary
Fields inherited from interface org.elasticsearch.xcontent.ToXContent
EMPTY_PARAMSFields inherited from interface org.elasticsearch.client.Validatable
EMPTY -
Constructor Summary
ConstructorsConstructorDescriptionCreateTokenRequest(String grantType, String scope, String username, char[] password, String refreshToken, char[] kerberosTicket) General purpose constructor. -
Method Summary
Modifier and TypeMethodDescriptionstatic CreateTokenRequestbooleanchar[]char[]getScope()inthashCode()static CreateTokenRequestkerberosGrant(char[] kerberosTicket) static CreateTokenRequestpasswordGrant(String username, char[] password) static CreateTokenRequestrefreshTokenGrant(String refreshToken) org.elasticsearch.xcontent.XContentBuildertoXContent(org.elasticsearch.xcontent.XContentBuilder builder, org.elasticsearch.xcontent.ToXContent.Params params) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.elasticsearch.xcontent.ToXContentObject
isFragmentMethods inherited from interface org.elasticsearch.client.Validatable
validate
-
Constructor Details
-
CreateTokenRequest
public CreateTokenRequest(String grantType, @Nullable String scope, @Nullable String username, @Nullable char[] password, @Nullable String refreshToken, @Nullable char[] kerberosTicket) General purpose constructor. This constructor is typically not useful, and one of the following factory methods should be used instead:
-
-
Method Details
-
passwordGrant
-
refreshTokenGrant
-
clientCredentialsGrant
-
kerberosGrant
-
getGrantType
-
getScope
-
getUsername
-
getPassword
public char[] getPassword() -
getRefreshToken
-
getKerberosTicket
public char[] getKerberosTicket() -
toXContent
public org.elasticsearch.xcontent.XContentBuilder toXContent(org.elasticsearch.xcontent.XContentBuilder builder, org.elasticsearch.xcontent.ToXContent.Params params) throws IOException - Specified by:
toXContentin interfaceorg.elasticsearch.xcontent.ToXContent- Throws:
IOException
-
equals
-
hashCode
public int hashCode()
-