Uses of Class
restart.common.Method

Packages that use Method
restart.client   
restart.common   
restart.server   
restart.xml.client   
restart.xml.server   
 

Uses of Method in restart.client
 

Constructors in restart.client with parameters of type Method
CallData(Method method, java.lang.String baseUrl)
           
CallData(Method method, java.lang.String serverNameAndPort, java.lang.String serviceName)
           
 

Uses of Method in restart.common
 

Methods in restart.common that return Method
static Method Method.fromString(java.lang.String method)
           
 Method ServiceData.getMethod()
           
static Method Method.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Method[] Method.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in restart.common with parameters of type Method
 void ServiceData.setMethod(Method method)
           
 

Uses of Method in restart.server
 

Methods in restart.server that return Method
 Method Service.getAuthorizedMethod()
           
 

Methods in restart.server with parameters of type Method
 void Service.setAuthorizedMethod(Method authMethod)
           
 

Constructors in restart.server with parameters of type Method
Service(Method authorizedMethod, java.lang.String name)
          Construct the Service with the default policy, the callback should be defined later
Service(Method authorizedMethod, java.lang.String name, Callback cb)
          Construct the Service with the default policy and the given callback
Service(Method authorizedMethod, java.lang.String name, Callback cb, ServicePolicy policy)
          Construct the Service with the given callback and the given policy
Service(Method authorizedMethod, java.lang.String name, ServicePolicy policy)
          Construct the Service with the given policy, the callback should be defined later
ServiceInput(Method method, java.lang.String serviceName)
           
 

Uses of Method in restart.xml.client
 

Constructors in restart.xml.client with parameters of type Method
XMLCallData(Method method, java.lang.String serverNameAndPort, java.lang.String serviceName, XMLHandler xmlHandler)
           
XMLCallData(Method method, java.lang.String baseUrl, XMLHandler xmlHandler)
           
 

Uses of Method in restart.xml.server
 

Constructors in restart.xml.server with parameters of type Method
XMLService(Method authMethod, java.lang.String name, XMLHandler xmlHandler)
           
XMLService(Method authMethod, java.lang.String name, XMLHandler xmlHandler, ServicePolicy policy)
           
XMLService(Method authMethod, java.lang.String name, XMLHandler xmlHandler, XMLCallback cb)
           
XMLService(Method authMethod, java.lang.String name, XMLHandler xmlHandler, XMLCallback cb, ServicePolicy policy)