Record Class ApiKey<G>
java.lang.Object
java.lang.Record
dev.relism.flash.ext.security.apikey.ApiKey<G>
- Record Components:
expiresAt-nullfor a key that does not expirerevokedAt-nullfor a key that has not been revoked
public record ApiKey<G>(String id, String secretHash, G grant, Instant expiresAt, Instant revokedAt)
extends Record
An API key as the application stores it: never the secret, only its hash, and the grant it was
issued with — whatever the application authorizes on.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of theexpiresAtrecord component.grant()Returns the value of thegrantrecord component.final inthashCode()Returns a hash code value for this object.id()Returns the value of theidrecord component.Returns the value of therevokedAtrecord component.Returns the value of thesecretHashrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ApiKey
Creates an instance of aApiKeyrecord class.
-
-
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). -
id
Returns the value of theidrecord component.- Returns:
- the value of the
idrecord component
-
secretHash
Returns the value of thesecretHashrecord component.- Returns:
- the value of the
secretHashrecord component
-
grant
Returns the value of thegrantrecord component.- Returns:
- the value of the
grantrecord component
-
expiresAt
Returns the value of theexpiresAtrecord component.- Returns:
- the value of the
expiresAtrecord component
-
revokedAt
Returns the value of therevokedAtrecord component.- Returns:
- the value of the
revokedAtrecord component
-