enterprises.orbital.evexmlapi.chr.IChatChannel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eve-xml-api Show documentation
Show all versions of eve-xml-api Show documentation
Library to interact with EVE XML API servers
package enterprises.orbital.evexmlapi.chr;
import java.util.Collection;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
@JsonSerialize(as = IChatChannel.class)
public interface IChatChannel {
public long getChannelID();
public long getOwnerID();
public String getOwnerName();
public String getDisplayName();
public String getComparisonKey();
public boolean hasPassword();
public String getMOTD();
public Collection getAllowed();
public Collection getBlocked();
public Collection getMuted();
public Collection getOperators();
}