Package net.minecraft.util
Record Class ApiServices
java.lang.Object
java.lang.Record
net.minecraft.util.ApiServices
- Record Components:
sessionService
-servicesKeySet
-profileRepository
-userCache
-
public record ApiServices(com.mojang.authlib.minecraft.MinecraftSessionService sessionService, com.mojang.authlib.yggdrasil.ServicesKeySet servicesKeySet, com.mojang.authlib.GameProfileRepository profileRepository, UserCache userCache)
extends Record
A record holding session services used by the server.
- API Note:
- Individual services can be accessed using the getters in
MinecraftServer
. - Mappings:
Namespace Name named net/minecraft/util/ApiServices
intermediary net/minecraft/class_7497
official alz
named sessionService
intermediary comp_837
official a
named servicesKeySet
intermediary comp_838
official b
named profileRepository
intermediary comp_839
official c
named userCache
intermediary comp_840
official d
-
Field Summary
Modifier and TypeFieldDescriptionprivate final com.mojang.authlib.GameProfileRepository
The field for theprofileRepository
record component.private final com.mojang.authlib.yggdrasil.ServicesKeySet
The field for theservicesKeySet
record component.private final com.mojang.authlib.minecraft.MinecraftSessionService
The field for thesessionService
record component.private static final String
private final UserCache
The field for theuserCache
record component. -
Constructor Summary
ConstructorDescriptionApiServices
(com.mojang.authlib.minecraft.MinecraftSessionService minecraftSessionService, com.mojang.authlib.yggdrasil.ServicesKeySet servicesKeySet, com.mojang.authlib.GameProfileRepository gameProfileRepository, UserCache userCache) -
Method Summary
Modifier and TypeMethodDescriptionstatic ApiServices
create
(com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService authenticationService, File rootDirectory) Returns a new API service instance.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.com.mojang.authlib.GameProfileRepository
Returns the value of theprofileRepository
record component.boolean
com.mojang.authlib.yggdrasil.ServicesKeySet
Returns the value of theservicesKeySet
record component.com.mojang.authlib.minecraft.MinecraftSessionService
Returns the value of thesessionService
record component.final String
toString()
Returns a string representation of this record class.Returns the value of theuserCache
record component.
-
Field Details
-
sessionService
private final com.mojang.authlib.minecraft.MinecraftSessionService sessionServiceThe field for thesessionService
record component. -
servicesKeySet
private final com.mojang.authlib.yggdrasil.ServicesKeySet servicesKeySetThe field for theservicesKeySet
record component. -
profileRepository
private final com.mojang.authlib.GameProfileRepository profileRepositoryThe field for theprofileRepository
record component. -
userCache
The field for theuserCache
record component. -
USER_CACHE_FILE_NAME
- See Also:
- Mappings:
Namespace Name Mixin selector named USER_CACHE_FILE_NAME
Lnet/minecraft/util/ApiServices;USER_CACHE_FILE_NAME:Ljava/lang/String;
intermediary field_39392
Lnet/minecraft/class_7497;field_39392:Ljava/lang/String;
official e
Lalz;e:Ljava/lang/String;
-
-
Constructor Details
-
ApiServices
public ApiServices(com.mojang.authlib.minecraft.MinecraftSessionService minecraftSessionService, com.mojang.authlib.yggdrasil.ServicesKeySet servicesKeySet, com.mojang.authlib.GameProfileRepository gameProfileRepository, UserCache userCache)
-
-
Method Details
-
create
public static ApiServices create(com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService authenticationService, File rootDirectory) Returns a new API service instance.This is usually not needed; call getters on
MinecraftServer
instead.- Returns:
- a new API service instance
- Mappings:
Namespace Name Mixin selector named create
Lnet/minecraft/util/ApiServices;create(Lcom/mojang/authlib/yggdrasil/YggdrasilAuthenticationService;Ljava/io/File;)Lnet/minecraft/util/ApiServices;
intermediary method_44143
Lnet/minecraft/class_7497;method_44143(Lcom/mojang/authlib/yggdrasil/YggdrasilAuthenticationService;Ljava/io/File;)Lnet/minecraft/class_7497;
official a
Lalz;a(Lcom/mojang/authlib/yggdrasil/YggdrasilAuthenticationService;Ljava/io/File;)Lalz;
-
serviceSignatureVerifier
- Mappings:
Namespace Name Mixin selector named serviceSignatureVerifier
Lnet/minecraft/util/ApiServices;serviceSignatureVerifier()Lnet/minecraft/network/encryption/SignatureVerifier;
intermediary method_51467
Lnet/minecraft/class_7497;method_51467()Lnet/minecraft/class_7500;
official a
Lalz;a()Lazm;
-
providesProfileKeys
public boolean providesProfileKeys()- Mappings:
Namespace Name Mixin selector named providesProfileKeys
Lnet/minecraft/util/ApiServices;providesProfileKeys()Z
intermediary method_55595
Lnet/minecraft/class_7497;method_55595()Z
official b
Lalz;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)
. -
sessionService
public com.mojang.authlib.minecraft.MinecraftSessionService sessionService()Returns the value of thesessionService
record component.- Returns:
- the value of the
sessionService
record component
-
servicesKeySet
public com.mojang.authlib.yggdrasil.ServicesKeySet servicesKeySet()Returns the value of theservicesKeySet
record component.- Returns:
- the value of the
servicesKeySet
record component
-
profileRepository
public com.mojang.authlib.GameProfileRepository profileRepository()Returns the value of theprofileRepository
record component.- Returns:
- the value of the
profileRepository
record component
-
userCache
Returns the value of theuserCache
record component.- Returns:
- the value of the
userCache
record component
-