Record Class ClientPlayerSession

java.lang.Object
java.lang.Record
net.minecraft.network.encryption.ClientPlayerSession
Record Components:
sessionId -
keyPair -

public record ClientPlayerSession(UUID sessionId, PlayerKeyPair keyPair) extends Record
Mappings:
Namespace Name
official tc
intermediary net/minecraft/class_7818
named net/minecraft/network/encryption/ClientPlayerSession
official a
intermediary comp_1077
named sessionId
official b
intermediary comp_1078
named keyPair
  • Field Details

    • sessionId

      private final UUID sessionId
      The field for the sessionId record component.
    • keyPair

      private final PlayerKeyPair keyPair
      The field for the keyPair record component.
  • Constructor Details

    • ClientPlayerSession

      public ClientPlayerSession(UUID uUID, PlayerKeyPair playerKeyPair)
  • Method Details

    • create

      public static ClientPlayerSession create(PlayerKeyPair keyPair)
      Mappings:
      Namespace Name Mixin selector
      official a Ltc;a(Lbwr;)Ltc;
      intermediary method_46273 Lnet/minecraft/class_7818;method_46273(Lnet/minecraft/class_7427;)Lnet/minecraft/class_7818;
      named create Lnet/minecraft/network/encryption/ClientPlayerSession;create(Lnet/minecraft/network/encryption/PlayerKeyPair;)Lnet/minecraft/network/encryption/ClientPlayerSession;
    • createPacker

      public MessageChain.Packer createPacker(UUID sender)
      Mappings:
      Namespace Name Mixin selector
      official a Ltc;a(Ljava/util/UUID;)Ltl$c;
      intermediary method_46274 Lnet/minecraft/class_7818;method_46274(Ljava/util/UUID;)Lnet/minecraft/class_7610$class_7612;
      named createPacker Lnet/minecraft/network/encryption/ClientPlayerSession;createPacker(Ljava/util/UUID;)Lnet/minecraft/network/message/MessageChain$Packer;
    • toPublicSession

      public PublicPlayerSession toPublicSession()
      Mappings:
      Namespace Name Mixin selector
      official a Ltc;a()Lti;
      intermediary method_46275 Lnet/minecraft/class_7818;method_46275()Lnet/minecraft/class_7822;
      named toPublicSession Lnet/minecraft/network/encryption/ClientPlayerSession;toPublicSession()Lnet/minecraft/network/encryption/PublicPlayerSession;
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object object)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • sessionId

      public UUID sessionId()
      Returns the value of the sessionId record component.
      Returns:
      the value of the sessionId record component
    • keyPair

      public PlayerKeyPair keyPair()
      Returns the value of the keyPair record component.
      Returns:
      the value of the keyPair record component