Record Class CredentialsWithoutRefreshToken
java.lang.Object
java.lang.Record
energy.eddie.regionconnector.cds.services.oauth.token.CredentialsWithoutRefreshToken
- All Implemented Interfaces:
TokenResult
public record CredentialsWithoutRefreshToken(String accessToken, ZonedDateTime expiresAt)
extends Record
implements TokenResult
-
Constructor Summary
ConstructorsConstructorDescriptionCredentialsWithoutRefreshToken(String accessToken, ZonedDateTime expiresAt) Creates an instance of aCredentialsWithoutRefreshTokenrecord 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.booleanisValid()final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
CredentialsWithoutRefreshToken
Creates an instance of aCredentialsWithoutRefreshTokenrecord class.- Parameters:
accessToken- the value for theaccessTokenrecord componentexpiresAt- the value for theexpiresAtrecord component
-
-
Method Details
-
isValid
public boolean isValid() -
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
-
expiresAt
Returns the value of theexpiresAtrecord component.- Returns:
- the value of the
expiresAtrecord component
-