public class AsyncPlayerPreLoginEvent extends Event
This event is asynchronous, and not run using main thread.
| Modifier and Type | Class | Description | 
|---|---|---|
static class  | 
AsyncPlayerPreLoginEvent.Result | 
 Basic kick reasons for communicating to plugins 
 | 
| Constructor | Description | 
|---|---|
AsyncPlayerPreLoginEvent(String name,
                        InetAddress ipAddress) | 
 Deprecated. 
 | 
AsyncPlayerPreLoginEvent(String name,
                        InetAddress ipAddress,
                        UUID uniqueId) | 
|
AsyncPlayerPreLoginEvent(String name,
                        InetAddress ipAddress,
                        UUID uniqueId,
                        PlayerProfile profile) | 
| Modifier and Type | Method | Description | 
|---|---|---|
void | 
allow() | 
 Allows the player to log in 
 | 
void | 
disallow(AsyncPlayerPreLoginEvent.Result result,
        String message) | 
 Disallows the player from logging in, with the given reason 
 | 
void | 
disallow(PlayerPreLoginEvent.Result result,
        String message) | 
 Deprecated.
 
This method uses a deprecated enum from  
PlayerPreLoginEvent | 
InetAddress | 
getAddress() | 
 Gets the player IP address. 
 | 
static HandlerList | 
getHandlerList() | 
|
HandlerList | 
getHandlers() | 
|
String | 
getKickMessage() | 
 Gets the current kick message that will be used if getResult() !=
 Result.ALLOWED 
 | 
AsyncPlayerPreLoginEvent.Result | 
getLoginResult() | 
 Gets the current result of the login, as an enum 
 | 
String | 
getName() | 
 Gets the player's name. 
 | 
PlayerProfile | 
getPlayerProfile() | 
 Gets the PlayerProfile of the player logging in 
 | 
PlayerPreLoginEvent.Result | 
getResult() | 
 Deprecated.
 
This method uses a deprecated enum from  
PlayerPreLoginEvent | 
UUID | 
getUniqueId() | 
 Gets the player's unique ID. 
 | 
void | 
setKickMessage(String message) | 
 Sets the kick message to display if getResult() != Result.ALLOWED 
 | 
void | 
setLoginResult(AsyncPlayerPreLoginEvent.Result result) | 
 Sets the new result of the login, as an enum 
 | 
void | 
setPlayerProfile(PlayerProfile profile) | 
 Changes the PlayerProfile the player will login as 
 | 
void | 
setResult(PlayerPreLoginEvent.Result result) | 
 Deprecated.
 
This method uses a deprecated enum from  
PlayerPreLoginEvent | 
callEvent, getEventName, isAsynchronous@Deprecated public AsyncPlayerPreLoginEvent(String name, InetAddress ipAddress)
public AsyncPlayerPreLoginEvent(String name, InetAddress ipAddress, UUID uniqueId)
public AsyncPlayerPreLoginEvent(String name, InetAddress ipAddress, UUID uniqueId, PlayerProfile profile)
public PlayerProfile getPlayerProfile()
public void setPlayerProfile(PlayerProfile profile)
profile - The profile to usepublic AsyncPlayerPreLoginEvent.Result getLoginResult()
@Deprecated public PlayerPreLoginEvent.Result getResult()
PlayerPreLoginEventgetLoginResult()public void setLoginResult(AsyncPlayerPreLoginEvent.Result result)
result - New result to set@Deprecated public void setResult(PlayerPreLoginEvent.Result result)
PlayerPreLoginEventresult - New result to setsetLoginResult(Result)public String getKickMessage()
public void setKickMessage(String message)
message - New kick messagepublic void allow()
public void disallow(AsyncPlayerPreLoginEvent.Result result, String message)
result - New result for disallowing the playermessage - Kick message to display to the user@Deprecated public void disallow(PlayerPreLoginEvent.Result result, String message)
PlayerPreLoginEventresult - New result for disallowing the playermessage - Kick message to display to the userdisallow(Result, String)public String getName()
public InetAddress getAddress()
public UUID getUniqueId()
public HandlerList getHandlers()
getHandlers in class Eventpublic static HandlerList getHandlerList()
Copyright © 2019. All rights reserved.