All Downloads are FREE. Search and download functionalities are using the official Maven repository.

enterprises.orbital.evexmlapi.chr.IChatChannel Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy