Package org.asteriskjava.manager.action

Examples of org.asteriskjava.manager.action.ConfbridgeListAction


  public Integer countUsers(String confno) {
    if (confno == null) {
      return null;
    }
    ConfbridgeListAction da = new ConfbridgeListAction(confno);
    ResponseEvents r = execEvent(da);
    if (r != null) {
      log.debug("SipDao::countUsers size == " + r.getEvents().size());
      // "- 1" here means: ListComplete event
      return r.getEvents().size() - 1; // TODO check if was successfull
View Full Code Here


  public Integer countUsers(String confno) {
    if (confno == null) {
      return null;
    }
    ConfbridgeListAction da = new ConfbridgeListAction(confno);
    ResponseEvents r = execEvent(da);
    if (r != null) {
      log.debug("SipDao::countUsers size == " + r.getEvents().size());
      // "- 1" here means: ListComplete event
      return r.getEvents().size() - 1; // TODO check if was successfull
View Full Code Here

TOP

Related Classes of org.asteriskjava.manager.action.ConfbridgeListAction

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.