Record Class TokenPairSerializer.TokenPair
java.lang.Object
java.lang.Record
io.trino.server.security.oauth2.TokenPairSerializer.TokenPair
-
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
-
hashCode
-
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
-