Package net.md_5.bungee.api.connection
Interface PendingConnection
- All Superinterfaces:
Connection
Represents a user attempting to log into the proxy.
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.md_5.bungee.api.connection.Connection
Connection.Unsafe
-
Method Summary
Modifier and TypeMethodDescriptionGet the listener that accepted this connection.getName()
Get the requested username.getSkin()
Returns theSkin
of this connection.Get this connection's UUID, if set.getUUID()
Deprecated.int
Get the numerical client version of the player attempting to log in.Get the requested virtual host that the client tried to connect to.boolean
isLegacy()
Check if the client is using the older unsupported Minecraft protocol used by Minecraft clients older than 1.7.boolean
Get this connection's online mode.void
setOnlineMode
(boolean onlineMode) Set this connection's online mode.void
Sets a newSkin
for this connection.void
setUniqueId
(UUID uuid) Set the connection's uuidMethods inherited from interface net.md_5.bungee.api.connection.Connection
disconnect, disconnect, disconnect, getAddress, getSocketAddress, isConnected, unsafe
-
Method Details
-
getName
String getName()Get the requested username.- Returns:
- the requested username, or null if not set
-
getVersion
int getVersion()Get the numerical client version of the player attempting to log in.- Returns:
- the protocol version of the remote client
-
getVirtualHost
InetSocketAddress getVirtualHost()Get the requested virtual host that the client tried to connect to.- Returns:
- request virtual host or null if invalid / not specified.
-
getListener
ListenerInfo getListener()Get the listener that accepted this connection.- Returns:
- the accepting listener
-
getUUID
Deprecated.In favour ofgetUniqueId()
Get this connection's UUID, if set.- Returns:
- the UUID
-
getUniqueId
UUID getUniqueId()Get this connection's UUID, if set.- Returns:
- the UUID
-
setUniqueId
Set the connection's uuid- Parameters:
uuid
- connection UUID
-
isOnlineMode
boolean isOnlineMode()Get this connection's online mode.
SeesetOnlineMode(boolean)
for a description of how this option works.- Returns:
- the online mode
-
setOnlineMode
void setOnlineMode(boolean onlineMode) Set this connection's online mode.
May be called only during the PlayerHandshakeEvent to set the online mode configuration setting for this connection only (i.e. whether or not the client will be treated as if it is connecting to an online mode server).- Parameters:
onlineMode
- status
-
isLegacy
boolean isLegacy()Check if the client is using the older unsupported Minecraft protocol used by Minecraft clients older than 1.7.- Returns:
- Whether the client is using a legacy client.
-
getSkin
Skin getSkin()Returns theSkin
of this connection. May be null. The nullability may depend on which time you're trying to access it.- Returns:
- skin of the connection
-
setSkin
Sets a newSkin
for this connection. The set skin will only apply if it's being set inServerConnectEvent
or events which fire BEFORE ServerConnectEvent. Otherwise, setting the skin won't take effect immediately, rather it may take effect when the connection switches servers.
WARNING: This only sets the skin of this connection only in this IvanCord instance. Does not globally modify the skin of the account, neither it can set it on other servers running IvanCord.- Parameters:
skin
- the skin to set.
-
getUniqueId()