Record Class CredentialsWithRefreshToken
java.lang.Object
java.lang.Record
energy.eddie.regionconnector.cds.services.oauth.token.CredentialsWithRefreshToken
- All Implemented Interfaces:
TokenResult
public record CredentialsWithRefreshToken(String accessToken, String refreshToken, ZonedDateTime expiresAt)
extends Record
implements TokenResult
-
Constructor Summary
ConstructorsConstructorDescriptionCredentialsWithRefreshToken(String accessToken, String refreshToken, ZonedDateTime expiresAt) Creates an instance of aCredentialsWithRefreshTokenrecord class. -
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 theexpiresAtrecord 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.
-
Constructor Details
-
CredentialsWithRefreshToken
public CredentialsWithRefreshToken(String accessToken, String refreshToken, ZonedDateTime expiresAt) Creates an instance of aCredentialsWithRefreshTokenrecord class.- Parameters:
accessToken- the value for theaccessTokenrecord componentrefreshToken- the value for therefreshTokenrecord componentexpiresAt- the value for theexpiresAtrecord component
-
-
Method Details
-
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
-
refreshToken
Returns the value of therefreshTokenrecord component.- Returns:
- the value of the
refreshTokenrecord component
-
expiresAt
Returns the value of theexpiresAtrecord component.- Returns:
- the value of the
expiresAtrecord component
-