Package de.jcm.discordgamesdk
Record Class ApplicationManager.AuthenticationData
java.lang.Object
java.lang.Record
de.jcm.discordgamesdk.ApplicationManager.AuthenticationData
- Record Components:
token
- Obtained tokenapplication
- Information about this applicationuser
- Current Discord user
- Enclosing class:
ApplicationManager
public static record ApplicationManager.AuthenticationData(ApplicationManager.DiscordOAuth2Token token, ApplicationManager.Application application, DiscordUser user)
extends Record
Combined data consisting of a
ApplicationManager.DiscordOAuth2Token
, an ApplicationManager.Application
, and a DiscordUser
-
Constructor Summary
ConstructorDescriptionAuthenticationData
(ApplicationManager.DiscordOAuth2Token token, ApplicationManager.Application application, DiscordUser user) Creates an instance of aAuthenticationData
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theapplication
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.token()
Returns the value of thetoken
record component.final String
toString()
Returns a string representation of this record class.user()
Returns the value of theuser
record component.
-
Constructor Details
-
AuthenticationData
public AuthenticationData(ApplicationManager.DiscordOAuth2Token token, ApplicationManager.Application application, DiscordUser user) Creates an instance of aAuthenticationData
record class.- Parameters:
token
- the value for thetoken
record componentapplication
- the value for theapplication
record componentuser
- the value for theuser
record 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)
. -
token
Returns the value of thetoken
record component.- Returns:
- the value of the
token
record component
-
application
Returns the value of theapplication
record component.- Returns:
- the value of the
application
record component
-
user
Returns the value of theuser
record component.- Returns:
- the value of the
user
record component
-