Uses of Class
com.orderlysoftware.orderlycalls.base.Service

Packages that use Service
com.orderlysoftware.orderlycalls   
com.orderlysoftware.orderlycalls.asterisk.agi   
com.orderlysoftware.orderlycalls.asterisk.manager   
com.orderlysoftware.orderlycalls.base   
com.orderlysoftware.orderlycalls.examples   
 

Uses of Service in com.orderlysoftware.orderlycalls
 

Methods in com.orderlysoftware.orderlycalls that return Service
 Service OrderlyCallsImpl.getService(java.lang.String name)
          Gets a Service by name.
static Service OrderlyCalls.getService(java.lang.String name)
          Gets a named Service.
 

Methods in com.orderlysoftware.orderlycalls with parameters of type Service
 void OrderlyCallsImpl.addService(Service service)
          Adds a service (with a named Settings object) to the framework.
 void OrderlyCalls.addService(Service service)
          Adds a service (with a named Settings object) to the framework.
 void OrderlyCallsImpl.removeService(Service service)
          Removes a service (with a named Settings object) from the framework.
 void OrderlyCalls.removeService(Service service)
          Removes a service (with a named Settings object) from the framework.
 

Uses of Service in com.orderlysoftware.orderlycalls.asterisk.agi
 

Subclasses of Service in com.orderlysoftware.orderlycalls.asterisk.agi
 class AGIServer
          AGIServer responds to calls coming from the FastAGI source by opening a socket, and attaching it to a new AGICall object with its own thread.
 

Uses of Service in com.orderlysoftware.orderlycalls.asterisk.manager
 

Subclasses of Service in com.orderlysoftware.orderlycalls.asterisk.manager
 class ManagerClient
          This class represents the TCP/IP connection to the Asterisk Manager system.
 

Uses of Service in com.orderlysoftware.orderlycalls.base
 

Methods in com.orderlysoftware.orderlycalls.base that return Service
static Service Service.getInstance(java.lang.Class serviceClass, Settings settings, boolean reuse)
          Gets an initialised Service instance.
static Service Service.getInstance(Settings settings)
          Gets an initialised Service instance.
static Service Service.getInstance(Settings settings, boolean reuse)
          Gets an initialised Service instance.
static Service Service.getInstanceByName(java.lang.String name)
          Gets an initialised Service instance by the name of the Settings object.
 

Uses of Service in com.orderlysoftware.orderlycalls.examples
 

Subclasses of Service in com.orderlysoftware.orderlycalls.examples
 class ExampleService
          Very basic Service implementation to help you write your own services.
 

Methods in com.orderlysoftware.orderlycalls.examples that return Service
static Service ExampleService.getInstance(Settings settings)
          Must define this method in order to work with superclass.
static Service ExampleService.getInstance(Settings settings, boolean reuse)
          Must define this as follows in order to work with superclass.