mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-12-22 17:18:37 +01:00
Missing file for EssentialsXMPP
git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1566 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
parent
aeb3b0f37c
commit
e53ce03d36
@ -0,0 +1,24 @@
|
||||
package com.earth2me.essentials.xmpp;
|
||||
|
||||
import java.util.List;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
|
||||
public interface IEssentialsXMPP
|
||||
{
|
||||
|
||||
String getAddress(final Player user);
|
||||
|
||||
String getAddress(final String name);
|
||||
|
||||
List<String> getSpyUsers();
|
||||
|
||||
void sendMessage(final Player user, final String message);
|
||||
|
||||
void sendMessage(final String address, final String message);
|
||||
|
||||
void setAddress(final Player user, final String address) throws Exception;
|
||||
|
||||
boolean toggleSpy(final Player user) throws Exception;
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user