Uses of Class
uws.service.AbstractUWS

Packages that use AbstractUWS
uws   
uws.job   
uws.job.serializer   
uws.service   
uws.service.actions   
 

Uses of AbstractUWS in uws
 

Methods in uws that return AbstractUWS
static AbstractUWS UWSToolBox.restoreUWS(java.io.File restoreFile, boolean debug)
          De-serializes (Java Object de-Serialization) a UWS from the specified file.
 

Methods in uws with parameters of type AbstractUWS
static boolean UWSToolBox.saveUWS(AbstractUWS uws, java.io.File restoreFile, boolean debug)
          Serializes (Java Object Serialization) the given UWS in the specified file.
 

Uses of AbstractUWS in uws.job
 

Methods in uws.job that return AbstractUWS
 AbstractUWS JobList.getUWS()
          Gets the UWS which manages this jobs list.
 

Methods in uws.job with parameters of type AbstractUWS
 void JobList.setUWS(AbstractUWS newUws)
          Sets the UWS which aims to manage this jobs list.
 

Uses of AbstractUWS in uws.job.serializer
 

Methods in uws.job.serializer with parameters of type AbstractUWS
 java.lang.String UWSSerializer.getUWS(AbstractUWS<? extends JobList<? extends AbstractJob>,? extends AbstractJob> uws)
          Serializes the given UWS.
 java.lang.String XMLSerializer.getUWS(AbstractUWS<? extends JobList<? extends AbstractJob>,? extends AbstractJob> uws, java.lang.String userId)
           
abstract  java.lang.String UWSSerializer.getUWS(AbstractUWS<? extends JobList<? extends AbstractJob>,? extends AbstractJob> uws, java.lang.String userId)
          Serializes the given UWS for the specified user.
 java.lang.String JSONSerializer.getUWS(AbstractUWS<? extends JobList<? extends AbstractJob>,? extends AbstractJob> uws, java.lang.String userId)
           
 

Uses of AbstractUWS in uws.service
 

Subclasses of AbstractUWS in uws.service
 class BasicUWS<J extends AbstractJob>
          Convenient implementation of AbstractUWS.
 class ExtendedUWS
          Convenient implementation of AbstractUWS.
 class QueuedBasicUWS<J extends AbstractJob>
          A BasicUWS which is able to manage an execution queue.
 class QueuedExtendedUWS
          A ExtendedUWS which is able to manage an execution queue.
 

Constructors in uws.service with parameters of type AbstractUWS
ExtendedUWS.AddJobWithConstructor(AbstractUWS<JobList<AbstractJob>,AbstractJob> u)
           
 

Uses of AbstractUWS in uws.service.actions
 

Fields in uws.service.actions declared as AbstractUWS
protected  AbstractUWS<JL,J> UWSAction.uws
          The UWS on which this action must be applied.
 

Methods in uws.service.actions that return AbstractUWS
 AbstractUWS<JL,J> UWSAction.getUWS()
          Gets the UWS which contains this action.
 

Constructors in uws.service.actions with parameters of type AbstractUWS
AddJob(AbstractUWS<JL,J> u)
           
DestroyJob(AbstractUWS<JL,J> u)
           
GetJobParam(AbstractUWS<JL,J> u)
           
JobSummary(AbstractUWS<JL,J> u)
           
ListJobs(AbstractUWS<JL,J> u)
           
SetJobParam(AbstractUWS<JL,J> u)
           
ShowHomePage(AbstractUWS<JL,J> u)
           
UWSAction(AbstractUWS<JL,J> u)
          Builds a UWSAction.