com.e_c_group.bwptk.services
Class SMDIMessageDesk

java.lang.Object
  extended by com.e_c_group.bwptk.services.SMDIMessageDesk

public class SMDIMessageDesk
extends java.lang.Object


Constructor Summary
SMDIMessageDesk()
           
 
Method Summary
static Response systemSMDIMessageDeskAddServerRequest(BroadWorksServer bws, boolean readFromCache, java.lang.String deviceName, java.lang.String netAddress, java.lang.String port, java.lang.String description)
          Request to add a SMDI Server to the system.
static Response systemSMDIMessageDeskAddServerRouteRequest(BroadWorksServer bws, boolean readFromCache, java.lang.String routeDestination, java.lang.String deviceName)
          Request to add a SMDI Server to the system.
static Response systemSMDIMessageDeskDeleteServerRequest(BroadWorksServer bws, boolean readFromCache, java.lang.String deviceName)
          Request to add a SMDI Server to the system.
static Response systemSMDIMessageDeskDeleteServerRouteRequest(BroadWorksServer bws, boolean readFromCache, java.lang.String routeDestination)
          Request to add a SMDI Server to the system.
static Response systemSMDIMessageDeskGetServerListRequest(BroadWorksServer bws, boolean readFromCache)
          Request to add a SMDI Server to the system.
static Response systemSMDIMessageDeskGetServerRouteListRequest(BroadWorksServer bws, boolean readFromCache)
          Request to add a SMDI Server to the system.
static Response systemSMDIMessageDeskModifyServerRequest(BroadWorksServer bws, boolean readFromCache, java.lang.String deviceName, java.lang.String netAddress, java.lang.String port, java.lang.String description)
          Request to add a SMDI Server to the system.
static Response systemSMDIMessageDeskModifyServerRouteRequest(BroadWorksServer bws, boolean readFromCache, java.lang.String routeDestination, java.lang.String deviceNameList)
          Request to add a SMDI Server to the system.
static Response userSMDIMessageDeskAddServerRequest(BroadWorksServer bws, boolean readFromCache, java.lang.String userId, java.lang.String deviceName, java.lang.String netAddress, java.lang.String port)
          Request to add a SMDI Server to the system.
static Response userSMDIMessageDeskDeleteServerListRequest(BroadWorksServer bws, boolean readFromCache, java.lang.String userId, java.lang.String deviceName)
          Request to add a SMDI Server to the system.
static Response userSMDIMessageDeskGetRequest(BroadWorksServer bws, boolean readFromCache, java.lang.String userId)
          Request to add a SMDI Server to the system.
static Response userSMDIMessageDeskGetServerListRequest(BroadWorksServer bws, boolean readFromCache, java.lang.String userId)
          Request to add a SMDI Server to the system.
static Response userSMDIMessageDeskModifyRequest(BroadWorksServer bws, boolean readFromCache, java.lang.String userId, java.lang.String isActive, java.lang.String messageDeskNumber)
          Request to add a SMDI Server to the system.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SMDIMessageDesk

public SMDIMessageDesk()
Method Detail

systemSMDIMessageDeskAddServerRequest

public static Response systemSMDIMessageDeskAddServerRequest(BroadWorksServer bws,
                                                             boolean readFromCache,
                                                             java.lang.String deviceName,
                                                             java.lang.String netAddress,
                                                             java.lang.String port,
                                                             java.lang.String description)
                                                      throws BwptkException
Request to add a SMDI Server to the system. The response is either a SuccessResponse or an ErrorResponse.

Parameters:
bws - The BroadWorks Server
readFromCache - Whether to pull the request from bwptk cache
deviceName -
netAddress -
port -
description -
Throws:
BwptkException

systemSMDIMessageDeskDeleteServerRequest

public static Response systemSMDIMessageDeskDeleteServerRequest(BroadWorksServer bws,
                                                                boolean readFromCache,
                                                                java.lang.String deviceName)
                                                         throws BwptkException
Request to add a SMDI Server to the system. The response is either a SuccessResponse or an ErrorResponse.

Parameters:
bws - The BroadWorks Server
readFromCache - Whether to pull the request from bwptk cache
deviceName -
Throws:
BwptkException

systemSMDIMessageDeskGetServerListRequest

public static Response systemSMDIMessageDeskGetServerListRequest(BroadWorksServer bws,
                                                                 boolean readFromCache)
                                                          throws BwptkException
Request to add a SMDI Server to the system. The response is either a SuccessResponse or an ErrorResponse.

Parameters:
bws - The BroadWorks Server
readFromCache - Whether to pull the request from bwptk cache
Throws:
BwptkException

systemSMDIMessageDeskModifyServerRequest

public static Response systemSMDIMessageDeskModifyServerRequest(BroadWorksServer bws,
                                                                boolean readFromCache,
                                                                java.lang.String deviceName,
                                                                java.lang.String netAddress,
                                                                java.lang.String port,
                                                                java.lang.String description)
                                                         throws BwptkException
Request to add a SMDI Server to the system. The response is either a SuccessResponse or an ErrorResponse.

Parameters:
bws - The BroadWorks Server
readFromCache - Whether to pull the request from bwptk cache
deviceName -
netAddress -
port -
description -
Throws:
BwptkException

systemSMDIMessageDeskAddServerRouteRequest

public static Response systemSMDIMessageDeskAddServerRouteRequest(BroadWorksServer bws,
                                                                  boolean readFromCache,
                                                                  java.lang.String routeDestination,
                                                                  java.lang.String deviceName)
                                                           throws BwptkException
Request to add a SMDI Server to the system. The response is either a SuccessResponse or an ErrorResponse.

Parameters:
bws - The BroadWorks Server
readFromCache - Whether to pull the request from bwptk cache
routeDestination -
deviceName -
Throws:
BwptkException

systemSMDIMessageDeskDeleteServerRouteRequest

public static Response systemSMDIMessageDeskDeleteServerRouteRequest(BroadWorksServer bws,
                                                                     boolean readFromCache,
                                                                     java.lang.String routeDestination)
                                                              throws BwptkException
Request to add a SMDI Server to the system. The response is either a SuccessResponse or an ErrorResponse.

Parameters:
bws - The BroadWorks Server
readFromCache - Whether to pull the request from bwptk cache
routeDestination -
Throws:
BwptkException

systemSMDIMessageDeskGetServerRouteListRequest

public static Response systemSMDIMessageDeskGetServerRouteListRequest(BroadWorksServer bws,
                                                                      boolean readFromCache)
                                                               throws BwptkException
Request to add a SMDI Server to the system. The response is either a SuccessResponse or an ErrorResponse.

Parameters:
bws - The BroadWorks Server
readFromCache - Whether to pull the request from bwptk cache
Throws:
BwptkException

systemSMDIMessageDeskModifyServerRouteRequest

public static Response systemSMDIMessageDeskModifyServerRouteRequest(BroadWorksServer bws,
                                                                     boolean readFromCache,
                                                                     java.lang.String routeDestination,
                                                                     java.lang.String deviceNameList)
                                                              throws BwptkException
Request to add a SMDI Server to the system. The response is either a SuccessResponse or an ErrorResponse.

Parameters:
bws - The BroadWorks Server
readFromCache - Whether to pull the request from bwptk cache
routeDestination -
deviceNameList -
Throws:
BwptkException

userSMDIMessageDeskAddServerRequest

public static Response userSMDIMessageDeskAddServerRequest(BroadWorksServer bws,
                                                           boolean readFromCache,
                                                           java.lang.String userId,
                                                           java.lang.String deviceName,
                                                           java.lang.String netAddress,
                                                           java.lang.String port)
                                                    throws BwptkException
Request to add a SMDI Server to the system. The response is either a SuccessResponse or an ErrorResponse.

Parameters:
bws - The BroadWorks Server
readFromCache - Whether to pull the request from bwptk cache
userId -
deviceName -
netAddress -
port -
Throws:
BwptkException

userSMDIMessageDeskDeleteServerListRequest

public static Response userSMDIMessageDeskDeleteServerListRequest(BroadWorksServer bws,
                                                                  boolean readFromCache,
                                                                  java.lang.String userId,
                                                                  java.lang.String deviceName)
                                                           throws BwptkException
Request to add a SMDI Server to the system. The response is either a SuccessResponse or an ErrorResponse.

Parameters:
bws - The BroadWorks Server
readFromCache - Whether to pull the request from bwptk cache
userId -
deviceName -
Throws:
BwptkException

userSMDIMessageDeskGetRequest

public static Response userSMDIMessageDeskGetRequest(BroadWorksServer bws,
                                                     boolean readFromCache,
                                                     java.lang.String userId)
                                              throws BwptkException
Request to add a SMDI Server to the system. The response is either a SuccessResponse or an ErrorResponse.

Parameters:
bws - The BroadWorks Server
readFromCache - Whether to pull the request from bwptk cache
userId -
Throws:
BwptkException

userSMDIMessageDeskGetServerListRequest

public static Response userSMDIMessageDeskGetServerListRequest(BroadWorksServer bws,
                                                               boolean readFromCache,
                                                               java.lang.String userId)
                                                        throws BwptkException
Request to add a SMDI Server to the system. The response is either a SuccessResponse or an ErrorResponse.

Parameters:
bws - The BroadWorks Server
readFromCache - Whether to pull the request from bwptk cache
userId -
Throws:
BwptkException

userSMDIMessageDeskModifyRequest

public static Response userSMDIMessageDeskModifyRequest(BroadWorksServer bws,
                                                        boolean readFromCache,
                                                        java.lang.String userId,
                                                        java.lang.String isActive,
                                                        java.lang.String messageDeskNumber)
                                                 throws BwptkException
Request to add a SMDI Server to the system. The response is either a SuccessResponse or an ErrorResponse.

Parameters:
bws - The BroadWorks Server
readFromCache - Whether to pull the request from bwptk cache
userId -
isActive -
messageDeskNumber -
Throws:
BwptkException