Package com.uc4.communication.requests
Class GetExecutePeriod
- java.lang.Object
-
- com.uc4.communication.requests.XMLRequest
-
- com.uc4.communication.requests.GetExecutePeriod
-
public class GetExecutePeriod extends XMLRequest
Reads Properties of a periodical Task.
-
-
Constructor Summary
Constructors Constructor Description GetExecutePeriod(int runID)
Constructs a newGetExecutePeriod
request.GetExecutePeriod(UC4ObjectName objectname)
Constructs a newGetExecutePeriod
request.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
createRequest(com.uc4.util.XMLDocument doc, org.w3c.dom.Element request, ConnectionAttributes sessionInfo)
Creates the XML Document for the request.ExecuteRecurring
getExecuteRecurring()
ReturnsExecuteRecurring
of the periodical task.protected java.lang.String
getSrc()
Returns the request source.protected void
handleContent(com.uc4.util.XMLDocument doc, ConnectionAttributes session)
Sub classes extract the values from the XML document and provide public getter methods.protected boolean
isAllowedInClientZero()
This method is used internally.void
setActivityRecurringExecute()
If this method is called the detail of a task in the activity list is returned.void
setArchiveRecurringExecute()
If this method is called the detail of a task in the statistics is returned.void
setExplorerRecurringExecute()
If this method is called the detail of a task in the Explorer is returned.-
Methods inherited from class com.uc4.communication.requests.XMLRequest
assertClientZero, assertServerVersion, checkClient, checkID, checkLnr, checkNull, checkSelStatisticsPrivilege, checkSystemOverviewPrivilege, checkUC4ObjectEmptyName, checkUC4ObjectName, createNATFor, createNATRequest, emptyAttributes, getAllMessageBoxes, getMessageBox, getRequestID, handleResponse, ignoreMessageBox, send, setMessageBox, showQuarantineNotification
-
-
-
-
Constructor Detail
-
GetExecutePeriod
public GetExecutePeriod(int runID)
Constructs a newGetExecutePeriod
request.- Parameters:
runID
- RunID
-
GetExecutePeriod
public GetExecutePeriod(UC4ObjectName objectname)
Constructs a newGetExecutePeriod
request.- Parameters:
objectname
- Name of the object.
-
-
Method Detail
-
isAllowedInClientZero
protected boolean isAllowedInClientZero()
Description copied from class:XMLRequest
This method is used internally. Tests if thisXMLRequest
is allowed in client 0. The default implementation returnsfalse
, subclasses may override.- Overrides:
isAllowedInClientZero
in classXMLRequest
- Returns:
true
if this request is allowed in client 0,false
otherwise
-
getSrc
protected java.lang.String getSrc()
Description copied from class:XMLRequest
Returns the request source. This method is used internally.- Specified by:
getSrc
in classXMLRequest
- Returns:
- Source
-
createRequest
protected void createRequest(com.uc4.util.XMLDocument doc, org.w3c.dom.Element request, ConnectionAttributes sessionInfo)
Description copied from class:XMLRequest
Creates the XML Document for the request. This method is used internally.- Specified by:
createRequest
in classXMLRequest
- Parameters:
doc
- Document, used to create new Elementsrequest
- Request Element - classes append information to this request elementsessionInfo
- Information about the session
-
handleContent
protected void handleContent(com.uc4.util.XMLDocument doc, ConnectionAttributes session)
Description copied from class:XMLRequest
Sub classes extract the values from the XML document and provide public getter methods.- Overrides:
handleContent
in classXMLRequest
- Parameters:
doc
- XML Documentsession
- Info about the user session
-
getExecuteRecurring
public ExecuteRecurring getExecuteRecurring()
ReturnsExecuteRecurring
of the periodical task.- Returns:
ExecuteRecurring
-
setActivityRecurringExecute
public void setActivityRecurringExecute()
If this method is called the detail of a task in the activity list is returned.
-
setArchiveRecurringExecute
public void setArchiveRecurringExecute()
If this method is called the detail of a task in the statistics is returned.
-
setExplorerRecurringExecute
public void setExplorerRecurringExecute()
If this method is called the detail of a task in the Explorer is returned.
-
-