Buscar

authlib 1.5.21

Esta é uma pré-visualização de arquivo. Entre para ver o arquivo original

META-INF/MANIFEST.MF
Manifest-Version: 1.0
com/mojang/authlib/Agent.class
package com.mojang.authlib;
public synchronized class Agent {
 public static final Agent MINECRAFT;
 public static final Agent SCROLLS;
 private final String name;
 private final int version;
 public void Agent(String, int);
 public String getName();
 public int getVersion();
 public String toString();
 static void <clinit>();
}
com/mojang/authlib/AuthenticationService.class
package com.mojang.authlib;
public abstract interface AuthenticationService {
 public abstract UserAuthentication createUserAuthentication(Agent);
 public abstract minecraft.MinecraftSessionService createMinecraftSessionService();
 public abstract GameProfileRepository createProfileRepository();
}
com/mojang/authlib/BaseAuthenticationService.class
package com.mojang.authlib;
public abstract synchronized class BaseAuthenticationService implements AuthenticationService {
 public void BaseAuthenticationService();
}
com/mojang/authlib/BaseUserAuthentication.class
package com.mojang.authlib;
public abstract synchronized class BaseUserAuthentication implements UserAuthentication {
 private static final org.apache.logging.log4j.Logger LOGGER;
 protected static final String STORAGE_KEY_PROFILE_NAME = displayName;
 protected static final String STORAGE_KEY_PROFILE_ID = uuid;
 protected static final String STORAGE_KEY_PROFILE_PROPERTIES = profileProperties;
 protected static final String STORAGE_KEY_USER_NAME = username;
 protected static final String STORAGE_KEY_USER_ID = userid;
 protected static final String STORAGE_KEY_USER_PROPERTIES = userProperties;
 private final AuthenticationService authenticationService;
 private final properties.PropertyMap userProperties;
 private String userid;
 private String username;
 private String password;
 private GameProfile selectedProfile;
 private UserType userType;
 protected void BaseUserAuthentication(AuthenticationService);
 public boolean canLogIn();
 public void logOut();
 public boolean isLoggedIn();
 public void setUsername(String);
 public void setPassword(String);
 protected String getUsername();
 protected String getPassword();
 public void loadFromStorage(java.util.Map);
 public java.util.Map saveForStorage();
 protected void setSelectedProfile(GameProfile);
 public GameProfile getSelectedProfile();
 public String toString();
 public AuthenticationService getAuthenticationService();
 public String getUserID();
 public properties.PropertyMap getUserProperties();
 protected properties.PropertyMap getModifiableUserProperties();
 public UserType getUserType();
 protected void setUserType(UserType);
 protected void setUserid(String);
 static void <clinit>();
}
com/mojang/authlib/GameProfile.class
package com.mojang.authlib;
public synchronized class GameProfile {
 private final java.util.UUID id;
 private final String name;
 private final properties.PropertyMap properties;
 private boolean legacy;
 public void GameProfile(java.util.UUID, String);
 public java.util.UUID getId();
 public String getName();
 public properties.PropertyMap getProperties();
 public boolean isComplete();
 public boolean equals(Object);
 public int hashCode();
 public String toString();
 public boolean isLegacy();
}
com/mojang/authlib/GameProfileRepository.class
package com.mojang.authlib;
public abstract interface GameProfileRepository {
 public abstract void findProfilesByNames(String[], Agent, ProfileLookupCallback);
}
com/mojang/authlib/HttpAuthenticationService.class
package com.mojang.authlib;
public abstract synchronized class HttpAuthenticationService extends BaseAuthenticationService {
 private static final org.apache.logging.log4j.Logger LOGGER;
 private final java.net.Proxy proxy;
 protected void HttpAuthenticationService(java.net.Proxy);
 public java.net.Proxy getProxy();
 protected java.net.HttpURLConnection createUrlConnection(java.net.URL) throws java.io.IOException;
 public String performPostRequest(java.net.URL, String, String) throws java.io.IOException;
 public String performGetRequest(java.net.URL) throws java.io.IOException;
 public static java.net.URL constantURL(String);
 public static String buildQuery(java.util.Map);
 public static java.net.URL concatenateURL(java.net.URL, String);
 static void <clinit>();
}
com/mojang/authlib/HttpUserAuthentication.class
package com.mojang.authlib;
public abstract synchronized class HttpUserAuthentication extends BaseUserAuthentication {
 protected void HttpUserAuthentication(HttpAuthenticationService);
 public HttpAuthenticationService getAuthenticationService();
}
com/mojang/authlib/ProfileLookupCallback.class
package com.mojang.authlib;
public abstract interface ProfileLookupCallback {
 public abstract void onProfileLookupSucceeded(GameProfile);
 public abstract void onProfileLookupFailed(GameProfile, Exception);
}
com/mojang/authlib/UserAuthentication.class
package com.mojang.authlib;
public abstract interface UserAuthentication {
 public abstract boolean canLogIn();
 public abstract void logIn() throws exceptions.AuthenticationException;
 public abstract void logOut();
 public abstract boolean isLoggedIn();
 public abstract boolean canPlayOnline();
 public abstract GameProfile[] getAvailableProfiles();
 public abstract GameProfile getSelectedProfile();
 public abstract void selectGameProfile(GameProfile) throws exceptions.AuthenticationException;
 public abstract void loadFromStorage(java.util.Map);
 public abstract java.util.Map saveForStorage();
 public abstract void setUsername(String);
 public abstract void setPassword(String);
 public abstract String getAuthenticatedToken();
 public abstract String getUserID();
 public abstract properties.PropertyMap getUserProperties();
 public abstract UserType getUserType();
}
com/mojang/authlib/UserType.class
package com.mojang.authlib;
public final synchronized enum UserType {
 public static final UserType LEGACY;
 public static final UserType MOJANG;
 private static final java.util.Map BY_NAME;
 private final String name;
 public static UserType[] values();
 public static UserType valueOf(String);
 private void UserType(String, int, String);
 public static UserType byName(String);
 public String getName();
 static void <clinit>();
}
com/mojang/authlib/exceptions/AuthenticationException.class
package com.mojang.authlib.exceptions;
public synchronized class AuthenticationException extends Exception {
 public void AuthenticationException();
 public void AuthenticationException(String);
 public void AuthenticationException(String, Throwable);
 public void AuthenticationException(Throwable);
}
com/mojang/authlib/exceptions/AuthenticationUnavailableException.class
package com.mojang.authlib.exceptions;
public synchronized class AuthenticationUnavailableException extends AuthenticationException {
 public void AuthenticationUnavailableException();
 public void AuthenticationUnavailableException(String);
 public void AuthenticationUnavailableException(String, Throwable);
 public void AuthenticationUnavailableException(Throwable);
}
com/mojang/authlib/exceptions/InvalidCredentialsException.class
package com.mojang.authlib.exceptions;
public synchronized class InvalidCredentialsException extends AuthenticationException {
 public void InvalidCredentialsException();
 public void InvalidCredentialsException(String);
 public void InvalidCredentialsException(String, Throwable);
 public void InvalidCredentialsException(Throwable);
}
com/mojang/authlib/exceptions/UserMigratedException.class
package com.mojang.authlib.exceptions;
public synchronized class UserMigratedException extends InvalidCredentialsException {
 public void UserMigratedException();
 public void UserMigratedException(String);
 public void UserMigratedException(String, Throwable);
 public void UserMigratedException(Throwable);
}
com/mojang/authlib/legacy/LegacyAuthenticationService.class
package com.mojang.authlib.legacy;
public synchronized class LegacyAuthenticationService extends com.mojang.authlib.HttpAuthenticationService {
 protected void LegacyAuthenticationService(java.net.Proxy);
 public LegacyUserAuthentication createUserAuthentication(com.mojang.authlib.Agent);
 public LegacyMinecraftSessionService createMinecraftSessionService();
 public com.mojang.authlib.GameProfileRepository createProfileRepository();
}
com/mojang/authlib/legacy/LegacyMinecraftSessionService.class
package com.mojang.authlib.legacy;
public synchronized class LegacyMinecraftSessionService extends com.mojang.authlib.minecraft.HttpMinecraftSessionService {
 private static final String BASE_URL = http://session.minecraft.net/game/;
 private static final java.net.URL JOIN_URL;
 private static final java.net.URL CHECK_URL;
 protected void LegacyMinecraftSessionService(LegacyAuthenticationService);
 public void joinServer(com.mojang.authlib.GameProfile, String, String) throws com.mojang.authlib.exceptions.AuthenticationException;
 public com.mojang.authlib.GameProfile hasJoinedServer(com.mojang.authlib.GameProfile, String) throws com.mojang.authlib.exceptions.AuthenticationUnavailableException;
 public java.util.Map getTextures(com.mojang.authlib.GameProfile, boolean);
 public com.mojang.authlib.GameProfile fillProfileProperties(com.mojang.authlib.GameProfile, boolean);
 public LegacyAuthenticationService getAuthenticationService();
 static void <clinit>();
}
com/mojang/authlib/legacy/LegacyUserAuthentication.class
package com.mojang.authlib.legacy;
public synchronized class LegacyUserAuthentication extends com.mojang.authlib.HttpUserAuthentication {
 private static final java.net.URL AUTHENTICATION_URL;
 private static final int AUTHENTICATION_VERSION = 14;
 private static final int RESPONSE_PART_PROFILE_NAME = 2;
 private static final int RESPONSE_PART_SESSION_TOKEN = 3;
 private static final int RESPONSE_PART_PROFILE_ID = 4;
 private String sessionToken;
 protected void LegacyUserAuthentication(LegacyAuthenticationService);
 public void logIn() throws com.mojang.authlib.exceptions.AuthenticationException;
 public void logOut();
 public boolean canPlayOnline();
 public com.mojang.authlib.GameProfile[] getAvailableProfiles();
 public void selectGameProfile(com.mojang.authlib.GameProfile) throws com.mojang.authlib.exceptions.AuthenticationException;
 public String getAuthenticatedToken();
 public String getUserID();
 public LegacyAuthenticationService getAuthenticationService();
 static void <clinit>();
}
com/mojang/authlib/minecraft/BaseMinecraftSessionService.class
package com.mojang.authlib.minecraft;
public abstract synchronized class BaseMinecraftSessionService implements MinecraftSessionService {
 private final com.mojang.authlib.AuthenticationService authenticationService;
 protected void BaseMinecraftSessionService(com.mojang.authlib.AuthenticationService);
 public com.mojang.authlib.AuthenticationService getAuthenticationService();
}
com/mojang/authlib/minecraft/HttpMinecraftSessionService.class
package com.mojang.authlib.minecraft;
public abstract synchronized class HttpMinecraftSessionService extends BaseMinecraftSessionService {
 protected void HttpMinecraftSessionService(com.mojang.authlib.HttpAuthenticationService);
 public com.mojang.authlib.HttpAuthenticationService getAuthenticationService();
}
com/mojang/authlib/minecraft/InsecureTextureException$MissingTextureException.class
package com.mojang.authlib.minecraft;
public synchronized class InsecureTextureException$MissingTextureException extends InsecureTextureException {
 public void InsecureTextureException$MissingTextureException();
}
com/mojang/authlib/minecraft/InsecureTextureException$OutdatedTextureException.class
package com.mojang.authlib.minecraft;
public synchronized class InsecureTextureException$OutdatedTextureException extends InsecureTextureException {
 private final java.util.Date validFrom;
 private final java.util.Calendar limit;
 public void InsecureTextureException$OutdatedTextureException(java.util.Date, java.util.Calendar);
}
com/mojang/authlib/minecraft/InsecureTextureException$WrongTextureOwnerException.class
package com.mojang.authlib.minecraft;
public synchronized class InsecureTextureException$WrongTextureOwnerException extends InsecureTextureException {
 private final com.mojang.authlib.GameProfile expected;
 private final java.util.UUID resultId;
 private final String resultName;
 public void InsecureTextureException$WrongTextureOwnerException(com.mojang.authlib.GameProfile, java.util.UUID, String);
}
com/mojang/authlib/minecraft/InsecureTextureException.class
package com.mojang.authlib.minecraft;
public synchronized class InsecureTextureException extends RuntimeException {
 public void InsecureTextureException(String);
}
com/mojang/authlib/minecraft/MinecraftProfileTexture$Type.class
package com.mojang.authlib.minecraft;
public final synchronized enum MinecraftProfileTexture$Type {
 public static final MinecraftProfileTexture$Type SKIN;
 public static final MinecraftProfileTexture$Type CAPE;
 public static MinecraftProfileTexture$Type[] values();
 public static MinecraftProfileTexture$Type valueOf(String);
 private void MinecraftProfileTexture$Type(String, int);
 static void <clinit>();
}
com/mojang/authlib/minecraft/MinecraftProfileTexture.class
package com.mojang.authlib.minecraft;
public synchronized class MinecraftProfileTexture {
 private final String url;
 private final java.util.Map metadata;
 public void MinecraftProfileTexture(String, java.util.Map);
 public String getUrl();
 public String getMetadata(String);
 public String getHash();
 public String toString();
}
com/mojang/authlib/minecraft/MinecraftSessionService.class
package com.mojang.authlib.minecraft;
public abstract interface MinecraftSessionService {
 public abstract void joinServer(com.mojang.authlib.GameProfile, String, String) throws com.mojang.authlib.exceptions.AuthenticationException;
 public abstract com.mojang.authlib.GameProfile hasJoinedServer(com.mojang.authlib.GameProfile, String) throws com.mojang.authlib.exceptions.AuthenticationUnavailableException;
 public abstract java.util.Map getTextures(com.mojang.authlib.GameProfile, boolean);
 public abstract com.mojang.authlib.GameProfile fillProfileProperties(com.mojang.authlib.GameProfile, boolean);
}
com/mojang/authlib/properties/Property.class
package com.mojang.authlib.properties;
public synchronized class Property {
 private final String name;
 private final String value;
 private final String signature;
 public void Property(String, String);
 public void Property(String, String, String);
 public String getName();
 public String getValue();
 public String getSignature();
 public boolean hasSignature();
 public boolean isSignatureValid(java.security.PublicKey);
}
com/mojang/authlib/properties/PropertyMap$Serializer.class
package com.mojang.authlib.properties;
public synchronized class PropertyMap$Serializer implements com.google.gson.JsonSerializer, com.google.gson.JsonDeserializer {
 public void PropertyMap$Serializer();
 public PropertyMap deserialize(com.google.gson.JsonElement,
reflect.Type, com.google.gson.JsonDeserializationContext) throws com.google.gson.JsonParseException;
 public com.google.gson.JsonElement serialize(PropertyMap, reflect.Type, com.google.gson.JsonSerializationContext);
}
com/mojang/authlib/properties/PropertyMap.class
package com.mojang.authlib.properties;
public synchronized class PropertyMap extends com.google.common.collect.ForwardingMultimap {
 private final com.google.common.collect.Multimap properties;
 public void PropertyMap();
 protected com.google.common.collect.Multimap delegate();
}
com/mojang/authlib/yggdrasil/ProfileIncompleteException.class
package com.mojang.authlib.yggdrasil;
public synchronized class ProfileIncompleteException extends RuntimeException {
 public void ProfileIncompleteException();
 public void ProfileIncompleteException(String);
 public void ProfileIncompleteException(String, Throwable);
 public void ProfileIncompleteException(Throwable);
}
com/mojang/authlib/yggdrasil/ProfileNotFoundException.class
package com.mojang.authlib.yggdrasil;
public synchronized class ProfileNotFoundException extends RuntimeException {
 public void ProfileNotFoundException();
 public void ProfileNotFoundException(String);
 public void ProfileNotFoundException(String, Throwable);
 public void ProfileNotFoundException(Throwable);
}
com/mojang/authlib/yggdrasil/YggdrasilAuthenticationService$1.class
package com.mojang.authlib.yggdrasil;
synchronized class YggdrasilAuthenticationService$1 {
}
com/mojang/authlib/yggdrasil/YggdrasilAuthenticationService$GameProfileSerializer.class
package com.mojang.authlib.yggdrasil;
synchronized class YggdrasilAuthenticationService$GameProfileSerializer implements com.google.gson.JsonSerializer, com.google.gson.JsonDeserializer {
 private void YggdrasilAuthenticationService$GameProfileSerializer();
 public com.mojang.authlib.GameProfile deserialize(com.google.gson.JsonElement, reflect.Type, com.google.gson.JsonDeserializationContext) throws com.google.gson.JsonParseException;
 public com.google.gson.JsonElement serialize(com.mojang.authlib.GameProfile, reflect.Type, com.google.gson.JsonSerializationContext);
}
com/mojang/authlib/yggdrasil/YggdrasilAuthenticationService.class
package com.mojang.authlib.yggdrasil;
public synchronized class YggdrasilAuthenticationService extends com.mojang.authlib.HttpAuthenticationService {
 private final String clientToken;
 private final com.google.gson.Gson gson;
 public void YggdrasilAuthenticationService(java.net.Proxy, String);
 public com.mojang.authlib.UserAuthentication createUserAuthentication(com.mojang.authlib.Agent);
 public com.mojang.authlib.minecraft.MinecraftSessionService createMinecraftSessionService();
 public com.mojang.authlib.GameProfileRepository createProfileRepository();
 protected response.Response makeRequest(java.net.URL, Object, Class) throws com.mojang.authlib.exceptions.AuthenticationException;
 public String getClientToken();
}
com/mojang/authlib/yggdrasil/YggdrasilGameProfileRepository.class
package com.mojang.authlib.yggdrasil;
public synchronized class YggdrasilGameProfileRepository implements com.mojang.authlib.GameProfileRepository {
 private static final org.apache.logging.log4j.Logger LOGGER;
 private static final String BASE_URL = https://api.mojang.com/;
 private static final String SEARCH_PAGE_URL = https://api.mojang.com/profiles/;
 private static final int ENTRIES_PER_PAGE = 2;
 private static final int MAX_FAIL_COUNT = 3;
 private static final int DELAY_BETWEEN_PAGES = 100;
 private static final int DELAY_BETWEEN_FAILURES = 750;
 private final YggdrasilAuthenticationService authenticationService;
 public void YggdrasilGameProfileRepository(YggdrasilAuthenticationService);
 public void findProfilesByNames(String[], com.mojang.authlib.Agent, com.mojang.authlib.ProfileLookupCallback);
 static void <clinit>();
}
com/mojang/authlib/yggdrasil/YggdrasilMinecraftSessionService$1.class
package com.mojang.authlib.yggdrasil;
synchronized class YggdrasilMinecraftSessionService$1 extends com.google.common.cache.CacheLoader {
 void YggdrasilMinecraftSessionService$1(YggdrasilMinecraftSessionService);
 public com.mojang.authlib.GameProfile load(com.mojang.authlib.GameProfile) throws Exception;
}
com/mojang/authlib/yggdrasil/YggdrasilMinecraftSessionService.class
package com.mojang.authlib.yggdrasil;
public synchronized class YggdrasilMinecraftSessionService extends com.mojang.authlib.minecraft.HttpMinecraftSessionService {
 private static final String[] WHITELISTED_DOMAINS;
 private static final org.apache.logging.log4j.Logger LOGGER;
 private static final String BASE_URL = https://sessionserver.mojang.com/session/minecraft/;
 private static final java.net.URL JOIN_URL;
 private static final java.net.URL CHECK_URL;
 private final java.security.PublicKey publicKey;
 private final com.google.gson.Gson gson;
 private final com.google.common.cache.LoadingCache insecureProfiles;
 protected void YggdrasilMinecraftSessionService(YggdrasilAuthenticationService);
 public void joinServer(com.mojang.authlib.GameProfile, String, String) throws com.mojang.authlib.exceptions.AuthenticationException;
 public com.mojang.authlib.GameProfile hasJoinedServer(com.mojang.authlib.GameProfile, String) throws com.mojang.authlib.exceptions.AuthenticationUnavailableException;
 public java.util.Map getTextures(com.mojang.authlib.GameProfile, boolean);
 public com.mojang.authlib.GameProfile fillProfileProperties(com.mojang.authlib.GameProfile, boolean);
 protected com.mojang.authlib.GameProfile fillGameProfile(com.mojang.authlib.GameProfile, boolean);
 public YggdrasilAuthenticationService getAuthenticationService();
 private static boolean isWhitelistedDomain(String);
 static void <clinit>();
}
com/mojang/authlib/yggdrasil/YggdrasilUserAuthentication.class
package com.mojang.authlib.yggdrasil;
public synchronized class YggdrasilUserAuthentication extends com.mojang.authlib.HttpUserAuthentication {
 private static final org.apache.logging.log4j.Logger LOGGER;
 private static final String BASE_URL = https://authserver.mojang.com/;
 private static final java.net.URL ROUTE_AUTHENTICATE;
 private static final java.net.URL ROUTE_REFRESH;
 private static final java.net.URL ROUTE_VALIDATE;
 private static final java.net.URL ROUTE_INVALIDATE;
 private static final java.net.URL ROUTE_SIGNOUT;
 private static final String STORAGE_KEY_ACCESS_TOKEN = accessToken;
 private final com.mojang.authlib.Agent agent;
 private com.mojang.authlib.GameProfile[] profiles;
 private String accessToken;
 private boolean isOnline;
 public void YggdrasilUserAuthentication(YggdrasilAuthenticationService, com.mojang.authlib.Agent);
 public boolean canLogIn();
 public void logIn() throws com.mojang.authlib.exceptions.AuthenticationException;
 protected void logInWithPassword() throws com.mojang.authlib.exceptions.AuthenticationException;
 protected void updateUserProperties(response.User);
 protected void logInWithToken() throws com.mojang.authlib.exceptions.AuthenticationException;
 protected boolean checkTokenValidity() throws com.mojang.authlib.exceptions.AuthenticationException;
 public void logOut();
 public com.mojang.authlib.GameProfile[] getAvailableProfiles();
 public boolean isLoggedIn();
 public boolean canPlayOnline();
 public void selectGameProfile(com.mojang.authlib.GameProfile) throws com.mojang.authlib.exceptions.AuthenticationException;
 public void loadFromStorage(java.util.Map);
 public java.util.Map saveForStorage();
 public String getSessionToken();
 public String getAuthenticatedToken();
 public com.mojang.authlib.Agent getAgent();
 public
String toString();
 public YggdrasilAuthenticationService getAuthenticationService();
 static void <clinit>();
}
com/mojang/authlib/yggdrasil/request/AuthenticationRequest.class
package com.mojang.authlib.yggdrasil.request;
public synchronized class AuthenticationRequest {
 private com.mojang.authlib.Agent agent;
 private String username;
 private String password;
 private String clientToken;
 private boolean requestUser;
 public void AuthenticationRequest(com.mojang.authlib.yggdrasil.YggdrasilUserAuthentication, String, String);
}
com/mojang/authlib/yggdrasil/request/InvalidateRequest.class
package com.mojang.authlib.yggdrasil.request;
public synchronized class InvalidateRequest {
 private String accessToken;
 private String clientToken;
 public void InvalidateRequest(com.mojang.authlib.yggdrasil.YggdrasilUserAuthentication);
}
com/mojang/authlib/yggdrasil/request/JoinMinecraftServerRequest.class
package com.mojang.authlib.yggdrasil.request;
public synchronized class JoinMinecraftServerRequest {
 public String accessToken;
 public java.util.UUID selectedProfile;
 public String serverId;
 public void JoinMinecraftServerRequest();
}
com/mojang/authlib/yggdrasil/request/RefreshRequest.class
package com.mojang.authlib.yggdrasil.request;
public synchronized class RefreshRequest {
 private String clientToken;
 private String accessToken;
 private com.mojang.authlib.GameProfile selectedProfile;
 private boolean requestUser;
 public void RefreshRequest(com.mojang.authlib.yggdrasil.YggdrasilUserAuthentication);
 public void RefreshRequest(com.mojang.authlib.yggdrasil.YggdrasilUserAuthentication, com.mojang.authlib.GameProfile);
}
com/mojang/authlib/yggdrasil/request/ValidateRequest.class
package com.mojang.authlib.yggdrasil.request;
public synchronized class ValidateRequest {
 private String clientToken;
 private String accessToken;
 public void ValidateRequest(com.mojang.authlib.yggdrasil.YggdrasilUserAuthentication);
}
com/mojang/authlib/yggdrasil/response/AuthenticationResponse.class
package com.mojang.authlib.yggdrasil.response;
public synchronized class AuthenticationResponse extends Response {
 private String accessToken;
 private String clientToken;
 private com.mojang.authlib.GameProfile selectedProfile;
 private com.mojang.authlib.GameProfile[] availableProfiles;
 private User user;
 public void AuthenticationResponse();
 public String getAccessToken();
 public String getClientToken();
 public com.mojang.authlib.GameProfile[] getAvailableProfiles();
 public com.mojang.authlib.GameProfile getSelectedProfile();
 public User getUser();
}
com/mojang/authlib/yggdrasil/response/HasJoinedMinecraftServerResponse.class
package com.mojang.authlib.yggdrasil.response;
public synchronized class HasJoinedMinecraftServerResponse extends Response {
 private java.util.UUID id;
 private com.mojang.authlib.properties.PropertyMap properties;
 public void HasJoinedMinecraftServerResponse();
 public java.util.UUID getId();
 public com.mojang.authlib.properties.PropertyMap getProperties();
}
com/mojang/authlib/yggdrasil/response/MinecraftProfilePropertiesResponse.class
package com.mojang.authlib.yggdrasil.response;
public synchronized class MinecraftProfilePropertiesResponse extends Response {
 private java.util.UUID id;
 private String name;
 private com.mojang.authlib.properties.PropertyMap properties;
 public void MinecraftProfilePropertiesResponse();
 public java.util.UUID getId();
 public String getName();
 public com.mojang.authlib.properties.PropertyMap getProperties();
}
com/mojang/authlib/yggdrasil/response/MinecraftTexturesPayload.class
package com.mojang.authlib.yggdrasil.response;
public synchronized class MinecraftTexturesPayload {
 private long timestamp;
 private java.util.UUID profileId;
 private String profileName;
 private boolean isPublic;
 private java.util.Map textures;
 public void MinecraftTexturesPayload();
 public long getTimestamp();
 public java.util.UUID getProfileId();
 public String getProfileName();
 public boolean isPublic();
 public java.util.Map getTextures();
}
com/mojang/authlib/yggdrasil/response/ProfileSearchResultsResponse$Serializer.class
package com.mojang.authlib.yggdrasil.response;
public synchronized class ProfileSearchResultsResponse$Serializer implements com.google.gson.JsonDeserializer {
 public void ProfileSearchResultsResponse$Serializer();
 public ProfileSearchResultsResponse deserialize(com.google.gson.JsonElement, reflect.Type, com.google.gson.JsonDeserializationContext) throws com.google.gson.JsonParseException;
}
com/mojang/authlib/yggdrasil/response/ProfileSearchResultsResponse.class
package com.mojang.authlib.yggdrasil.response;
public synchronized class ProfileSearchResultsResponse extends Response {
 private com.mojang.authlib.GameProfile[] profiles;
 public void ProfileSearchResultsResponse();
 public com.mojang.authlib.GameProfile[] getProfiles();
}
com/mojang/authlib/yggdrasil/response/RefreshResponse.class
package com.mojang.authlib.yggdrasil.response;
public synchronized class RefreshResponse extends Response {
 private String accessToken;
 private String clientToken;
 private com.mojang.authlib.GameProfile selectedProfile;
 private com.mojang.authlib.GameProfile[] availableProfiles;
 private User user;
 public void RefreshResponse();
 public String getAccessToken();
 public String getClientToken();
 public com.mojang.authlib.GameProfile[] getAvailableProfiles();
 public com.mojang.authlib.GameProfile getSelectedProfile();
 public User getUser();
}
com/mojang/authlib/yggdrasil/response/Response.class
package com.mojang.authlib.yggdrasil.response;
public synchronized class Response {
 private String error;
 private String errorMessage;
 private String cause;
 public void Response();
 public String getError();
 public String getCause();
 public String getErrorMessage();
 protected void setError(String);
 protected void setErrorMessage(String);
 protected void setCause(String);
}
com/mojang/authlib/yggdrasil/response/User.class
package com.mojang.authlib.yggdrasil.response;
public synchronized class User {
 private String id;
 private com.mojang.authlib.properties.PropertyMap properties;
 public void User();
 public String getId();
 public com.mojang.authlib.properties.PropertyMap getProperties();
}
com/mojang/util/QueueLogAppender.class
package com.mojang.util;
public synchronized class QueueLogAppender extends org.apache.logging.log4j.core.appender.AbstractAppender {
 private static final int MAX_CAPACITY = 250;
 private static final java.util.Map QUEUES;
 private static final java.util.concurrent.locks.ReadWriteLock QUEUE_LOCK;
 private final java.util.concurrent.BlockingQueue queue;
 public void QueueLogAppender(String, org.apache.logging.log4j.core.Filter, org.apache.logging.log4j.core.Layout, boolean, java.util.concurrent.BlockingQueue);
 public void append(org.apache.logging.log4j.core.LogEvent);
 public static QueueLogAppender createAppender(String, String, org.apache.logging.log4j.core.Layout, org.apache.logging.log4j.core.Filter, String);
 public static String getNextLogEvent(String);
 static void <clinit>();
}
com/mojang/util/UUIDTypeAdapter.class
package com.mojang.util;
public synchronized class UUIDTypeAdapter extends com.google.gson.TypeAdapter {
 public void UUIDTypeAdapter();
 public void write(com.google.gson.stream.JsonWriter, java.util.UUID) throws java.io.IOException;
 public java.util.UUID read(com.google.gson.stream.JsonReader) throws java.io.IOException;
public static String fromUUID(java.util.UUID);
 public static java.util.UUID fromString(String);
}
yggdrasil_session_pubkey.der

Teste o Premium para desbloquear

Aproveite todos os benefícios por 3 dias sem pagar! 😉
Já tem cadastro?

Continue navegando