Uses of Class
compbio.ws.client.Services

Packages that use Services
compbio.data.msa Web Service interfaces for JAva Bioinformatics Analysis Web Services. 
compbio.data.msa.jaxws   
compbio.ws.client A command line client and web services testing client for JAva Bioinformatics Analysis Web Services. 
 

Uses of Services in compbio.data.msa
 

Methods in compbio.data.msa that return types with arguments of type Services
 Set<Services> RegistryWS.getSupportedServices()
          List of services that are functioning on the server.
 

Methods in compbio.data.msa with parameters of type Services
 int RegistryWS.getLastTested(Services service)
          Number of seconds since the last test.
 Date RegistryWS.getLastTestedOn(Services service)
          The date and time the service has been verified to work last time
 boolean RegistryWS.isOperating(Services service)
          Check whether a particular web service is working on this server
 String RegistryWS.testService(Services service)
          Test a particular service
 

Uses of Services in compbio.data.msa.jaxws
 

Methods in compbio.data.msa.jaxws that return Services
 Services TestService.getArg0()
           
 Services IsOperating.getArg0()
           
 Services GetLastTestedOn.getArg0()
           
 Services GetLastTested.getArg0()
           
 

Methods in compbio.data.msa.jaxws that return types with arguments of type Services
 Set<Services> GetSupportedServicesResponse.getReturn()
           
 

Methods in compbio.data.msa.jaxws with parameters of type Services
 void TestService.setArg0(Services arg0)
           
 void IsOperating.setArg0(Services arg0)
           
 void GetLastTestedOn.setArg0(Services arg0)
           
 void GetLastTested.setArg0(Services arg0)
           
 

Method parameters in compbio.data.msa.jaxws with type arguments of type Services
 void GetSupportedServicesResponse.setReturn(Set<Services> _return)
           
 

Uses of Services in compbio.ws.client
 

Methods in compbio.ws.client that return Services
static Services Services.getService(String servName)
           
static Services ServicesUtil.getServiceByJobDirectory(File jobdir)
           
static Services ServicesUtil.getServiceByRunner(Class<compbio.engine.client.Executable<?>> runnerClassName)
           
static Services Services.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Services[] Services.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in compbio.ws.client that return types with arguments of type Services
static Set<Services> Jws2Client.getServices(String hostname)
           
 

Methods in compbio.ws.client with parameters of type Services
 boolean WSTester.checkService(Services service)
          Test JABA web service
static JABAService Jws2Client.connect(String host, Services service)
          Connects to a web service by the host and the service name web service type
static Class<? extends compbio.engine.client.Executable<?>> ServicesUtil.getServiceImpl(Services service)
           
static void Jws2Client.testService(String hostname, Services service, PrintWriter writer)
          Asks registry to test the service on the host hostname
 

Method parameters in compbio.ws.client with type arguments of type Services
static String Services.toString(Set<Services> services)