Package org.localify.data
Record Class SpotifyServiceUtils.SpotifyCredentialHolder
java.lang.Object
java.lang.Record
org.localify.data.SpotifyServiceUtils.SpotifyCredentialHolder
- Record Components:
accessToken- The access token.expiresAt- The expiration time.
- Enclosing class:
- SpotifyServiceUtils
public static record SpotifyServiceUtils.SpotifyCredentialHolder(String accessToken, Instant expiresAt)
extends Record
A holder for Spotify credentials.
-
Constructor Summary
ConstructorsConstructorDescriptionSpotifyCredentialHolder(String accessToken, Instant expiresAt) Creates an instance of aSpotifyCredentialHolderrecord 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()Checks if the credentials are valid.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SpotifyCredentialHolder
Creates an instance of aSpotifyCredentialHolderrecord class.- Parameters:
accessToken- the value for theaccessTokenrecord componentexpiresAt- the value for theexpiresAtrecord component
-
-
Method Details
-
isValid
public boolean isValid()Checks if the credentials are valid.- Returns:
- True if the credentials are valid, false otherwise.
-
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
-