Package net.minecraft.network.encryption
Record Class PublicPlayerSession
java.lang.Object
java.lang.Record
net.minecraft.network.encryption.PublicPlayerSession
- Record Components:
sessionId
-publicKeyData
-
- Mappings:
Namespace Name named net/minecraft/network/encryption/PublicPlayerSession
intermediary net/minecraft/class_7822
official yg
named sessionId
intermediary comp_1085
official a
named publicKeyData
intermediary comp_1086
official b
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionprivate final PlayerPublicKey
The field for thepublicKeyData
record component.private final UUID
The field for thesessionId
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncreateUnpacker
(UUID sender) createVerifier
(Duration gracePeriod) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.boolean
Returns the value of thepublicKeyData
record component.Returns the value of thesessionId
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
sessionId
The field for thesessionId
record component. -
publicKeyData
The field for thepublicKeyData
record component.
-
-
Constructor Details
-
PublicPlayerSession
-
-
Method Details
-
createVerifier
- Mappings:
Namespace Name Mixin selector named createVerifier
Lnet/minecraft/network/encryption/PublicPlayerSession;createVerifier(Ljava/time/Duration;)Lnet/minecraft/network/message/MessageVerifier;
intermediary method_46296
Lnet/minecraft/class_7822;method_46296(Ljava/time/Duration;)Lnet/minecraft/class_7615;
official a
Lyg;a(Ljava/time/Duration;)Lyl;
-
createUnpacker
- Mappings:
Namespace Name Mixin selector named createUnpacker
Lnet/minecraft/network/encryption/PublicPlayerSession;createUnpacker(Ljava/util/UUID;)Lnet/minecraft/network/message/MessageChain$Unpacker;
intermediary method_46297
Lnet/minecraft/class_7822;method_46297(Ljava/util/UUID;)Lnet/minecraft/class_7610$class_7611;
official a
Lyg;a(Ljava/util/UUID;)Lyj$b;
-
toSerialized
- Mappings:
Namespace Name Mixin selector named toSerialized
Lnet/minecraft/network/encryption/PublicPlayerSession;toSerialized()Lnet/minecraft/network/encryption/PublicPlayerSession$Serialized;
intermediary method_46298
Lnet/minecraft/class_7822;method_46298()Lnet/minecraft/class_7822$class_7823;
official a
Lyg;a()Lyg$a;
-
isKeyExpired
public boolean isKeyExpired()- Mappings:
Namespace Name Mixin selector named isKeyExpired
Lnet/minecraft/network/encryption/PublicPlayerSession;isKeyExpired()Z
intermediary method_51466
Lnet/minecraft/class_7822;method_51466()Z
official b
Lyg;b()Z
-
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)
. -
sessionId
Returns the value of thesessionId
record component.- Returns:
- the value of the
sessionId
record component
-
publicKeyData
Returns the value of thepublicKeyData
record component.- Returns:
- the value of the
publicKeyData
record component
-