Package com.github.theholywaffle.teamspeak3.commands.parameter

Examples of com.github.theholywaffle.teamspeak3.commands.parameter.OptionParam


public class CServerGroupPermList extends Command {

  public CServerGroupPermList(int id) {
    super("servergrouppermlist");
    add(new KeyValueParam("sgid", id));
    add(new OptionParam("permsid"));
  }
View Full Code Here


public class CClientPermList extends Command{

  public CClientPermList(int clientDBId) {
    super("clientpermlist");
    add(new KeyValueParam("cldbid",clientDBId+""));
    add(new OptionParam("permsid"));
  }
View Full Code Here

public class CClientList extends Command{

  public CClientList() {
    super("clientlist");
    add(new OptionParam("uid"));
    add(new OptionParam("away"));
    add(new OptionParam("voice"));
    add(new OptionParam("times"));
    add(new OptionParam("groups"));
    add(new OptionParam("info"));
    add(new OptionParam("icon"));
    add(new OptionParam("country"));
  }
View Full Code Here

  public CChannelClientPermList(int channelId, int clientDBId) {
    super("channelclientpermlist");
    add(new KeyValueParam("cid",channelId));
    add(new KeyValueParam("cldbid",clientDBId));
    add(new OptionParam("permsid"));
  }
View Full Code Here

public class CChannelGroupPermList extends Command{

  public CChannelGroupPermList(int groupId) {
    super("channelgrouppermlist");
    add(new KeyValueParam("cgid",groupId+""));
    add(new OptionParam("permsid"));
  }
View Full Code Here

public class CChannelList extends Command{

  public CChannelList() {
    super("channellist");
    add(new OptionParam("topic"));
    add(new OptionParam("flags"));
    add(new OptionParam("voice"));
    add(new OptionParam("limits"));
    add(new OptionParam("icon"));
  }
View Full Code Here

public class CChannelPermList extends Command {

  public CChannelPermList(int channelId) {
    super("channelpermlist");
    add(new KeyValueParam("cid",channelId+""));
    add(new OptionParam("permsid"));
  }
View Full Code Here

public class CServerGroupClientList extends Command {

  public CServerGroupClientList(int groupId) {
    super("servergroupclientlist");
    add(new KeyValueParam("sgid",groupId+""));
    add(new OptionParam("names"));
  }
View Full Code Here

public class CServerSnapshotDeploy extends Command {

  public CServerSnapshotDeploy(String snapshot) {
    super("serversnapshotdeploy");
    add(new RawParam(snapshot));
  }
View Full Code Here

  public void fireEvent(String notifyName, String notifyBody) {
    TS3EventEmitter emitter = map.get(notifyName);
    if (emitter != null) {
      for (TS3Listener l : listeners) {
        emitter.fire(l, new DefaultArrayResponse(notifyBody).getArray()
            .get(0));
      }
    } else {
      throw new TS3UnknownEventException(notifyName + " " + notifyBody);
    }
View Full Code Here

TOP

Related Classes of com.github.theholywaffle.teamspeak3.commands.parameter.OptionParam

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.