Package | Description |
---|---|
uws.service | |
uws.service.actions |
Modifier and Type | Field and Description |
---|---|
protected UWSAction |
UWSService.executedAction
The action executed during the last call of
UWSService.executeRequest(HttpServletRequest, HttpServletResponse) . |
Modifier and Type | Field and Description |
---|---|
protected java.util.Vector<UWSAction> |
UWSService.uwsActions
List of UWS actions (i.e.
|
Modifier and Type | Method and Description |
---|---|
UWSAction |
UWSService.getExecutedAction()
Gets the UWS action executed during the last call of
UWSService.executeRequest(HttpServletRequest, HttpServletResponse) . |
UWSAction |
UWSService.getUWSAction(java.lang.String actionName)
Gets the action of this UWS which has the same name as the given one.
|
UWSAction |
UWSService.removeUWSAction(int indAction)
Removes the specified action from this UWS.
|
UWSAction |
UWSService.removeUWSAction(java.lang.String actionName)
Removes the action of this UWS which has the same name as the given one.
|
UWSAction |
UWSService.replaceUWSAction(UWSAction action)
Replaces the action which has the same name that the given action.
|
Modifier and Type | Method and Description |
---|---|
java.util.Iterator<UWSAction> |
UWSService.getUWSActions()
Gets all actions of this UWS.
|
Modifier and Type | Method and Description |
---|---|
boolean |
UWSService.addUWSAction(int indAction,
UWSAction action)
Lets inserting the given action at the given position in the actions list of this UWS.
|
boolean |
UWSService.addUWSAction(UWSAction action)
Lets adding the given action to this UWS.
|
UWSAction |
UWSService.replaceUWSAction(UWSAction action)
Replaces the action which has the same name that the given action.
|
boolean |
UWSService.setUWSAction(int indAction,
UWSAction action)
Replaces the specified action by the given action.
|
Modifier and Type | Class and Description |
---|---|
class |
AddJob
The "Add Job" action of a UWS.
|
class |
DestroyJob
The "Destroy Job" action of a UWS.
|
class |
GetJobParam
The "Get Job Parameter" action of a UWS.
|
class |
JobSummary
The "Get Job" action of a UWS.
|
class |
ListJobs
The "List Jobs" action of a UWS.
|
class |
SetJobParam
The "Set Job Parameter" action of a UWS.
|
class |
SetUWSParameter
The UWS action which lets set the phase (RUN or ABORT), the execution duration and the destruction time of a job
with a POST or PUT request on {job-id}/{uws-param}.
|
class |
ShowHomePage
The "Show UWS Home Page" action of a UWS.
|