Package net.md_5.bungee.api.event
Class ServerKickEvent
- java.lang.Object
-
- net.md_5.bungee.api.plugin.Event
-
- net.md_5.bungee.api.event.ServerKickEvent
-
- All Implemented Interfaces:
Cancellable
public class ServerKickEvent extends Event implements Cancellable
Represents a player getting kicked from a server.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classServerKickEvent.State
-
Constructor Summary
Constructors Constructor Description ServerKickEvent(ProxiedPlayer player, BaseComponent[] kickReasonComponent, ServerInfo cancelServer)Deprecated.ServerKickEvent(ProxiedPlayer player, BaseComponent[] kickReasonComponent, ServerInfo cancelServer, ServerKickEvent.State state)Deprecated.ServerKickEvent(ProxiedPlayer player, ServerInfo kickedFrom, BaseComponent[] kickReasonComponent, ServerInfo cancelServer, ServerKickEvent.State state)Deprecated.ServerKickEvent(ProxiedPlayer player, ServerInfo kickedFrom, BaseComponent reason, ServerInfo cancelServer, ServerKickEvent.State state)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StringgetKickReason()Deprecated.use component methods insteadBaseComponent[]getKickReasonComponent()Deprecated.use single component methods insteadvoidsetKickReason(String reason)Deprecated.use component methods insteadvoidsetKickReasonComponent(BaseComponent[] kickReasonComponent)Deprecated.use single component methods instead-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.md_5.bungee.api.plugin.Cancellable
isCancelled, setCancelled
-
-
-
-
Constructor Detail
-
ServerKickEvent
@Deprecated public ServerKickEvent(ProxiedPlayer player, BaseComponent[] kickReasonComponent, ServerInfo cancelServer)
Deprecated.
-
ServerKickEvent
@Deprecated public ServerKickEvent(ProxiedPlayer player, BaseComponent[] kickReasonComponent, ServerInfo cancelServer, ServerKickEvent.State state)
Deprecated.
-
ServerKickEvent
@Deprecated public ServerKickEvent(ProxiedPlayer player, ServerInfo kickedFrom, BaseComponent[] kickReasonComponent, ServerInfo cancelServer, ServerKickEvent.State state)
Deprecated.
-
ServerKickEvent
public ServerKickEvent(ProxiedPlayer player, ServerInfo kickedFrom, BaseComponent reason, ServerInfo cancelServer, ServerKickEvent.State state)
-
-
Method Detail
-
getKickReason
@Deprecated public String getKickReason()
Deprecated.use component methods instead- Returns:
- the kick reason
-
setKickReason
@Deprecated public void setKickReason(String reason)
Deprecated.use component methods instead- Parameters:
reason- the kick reason
-
getKickReasonComponent
@Deprecated public BaseComponent[] getKickReasonComponent()
Deprecated.use single component methods instead- Returns:
- the kick reason
-
setKickReasonComponent
@Deprecated public void setKickReasonComponent(BaseComponent[] kickReasonComponent)
Deprecated.use single component methods instead- Parameters:
kickReasonComponent- the kick reason
-
-