Package io.trino.server.security.oauth2
Record Class TokenPairSerializer.TokenPair
java.lang.Object
java.lang.Record
io.trino.server.security.oauth2.TokenPairSerializer.TokenPair
- Enclosing interface:
TokenPairSerializer
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theaccessTokenrecord component.final booleanIndicates whether some other object is "equal to" this one.Returns the value of theexpirationrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of therefreshTokenrecord component.final StringtoString()Returns a string representation of this record class.withAccessAndRefreshTokens(String accessToken, Date expiration, String refreshToken) withAccessToken(String accessToken)
-
Constructor Details
-
TokenPair
Creates an instance of aTokenPairrecord class.- Parameters:
accessToken- the value for theaccessTokenrecord componentexpiration- the value for theexpirationrecord componentrefreshToken- the value for therefreshTokenrecord component
-
-
Method Details
-
withAccessToken
-
fromOAuth2Response
-
withAccessAndRefreshTokens
public static TokenPairSerializer.TokenPair withAccessAndRefreshTokens(String accessToken, Date expiration, @Nullable String refreshToken) -
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
accessToken
Returns the value of theaccessTokenrecord component.- Returns:
- the value of the
accessTokenrecord component
-
expiration
Returns the value of theexpirationrecord component.- Returns:
- the value of the
expirationrecord component
-
refreshToken
Returns the value of therefreshTokenrecord component.- Returns:
- the value of the
refreshTokenrecord component
-