Package com.uc4.communication.requests
Class ScheduleMonitor
- java.lang.Object
-
- com.uc4.communication.requests.XMLRequest
-
- com.uc4.communication.requests.ScheduleMonitor
-
- All Implemented Interfaces:
java.lang.Iterable<ScheduleMonitor.Task>
public class ScheduleMonitor extends XMLRequest implements java.lang.Iterable<ScheduleMonitor.Task>
Reads a Schedule monitor.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classScheduleMonitor.TaskThis class represents a task in the Schedule monitor.
-
Constructor Summary
Constructors Constructor Description ScheduleMonitor(int runID)Constructs a newScheduleMonitorrequest.ScheduleMonitor(int runID, boolean active)Deprecated.This method is deprecated on 31-03-2016, please set "src" using methods setActivityScheduleMonitor, setArchiveScheduleMonitor, setExplorerScheduleMonitor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidcreateRequest(com.uc4.util.XMLDocument doc, org.w3c.dom.Element request, ConnectionAttributes sessionInfo)Creates the XML Document for the request.protected ScheduleMonitor.TaskcreateTask(org.w3c.dom.Element task, ConnectionAttributes session)Creates a new ScheduleMonitor.Task in the Schedule monitor.intgetRunID()Returns the run id of this schedule.protected java.lang.StringgetSrc()Returns the request source.java.lang.StringgetStartTime()intgetStatusCode()Returns the status of the task as integer.protected voidhandleContent(com.uc4.util.XMLDocument doc, ConnectionAttributes session)Sub classes extract the values from the XML document and provide public getter methods.booleanisActive()protected booleanisAllowedInClientZero()This method is used internally.booleanisReloadNextTurnaround()Returnstrueif reload definition at period turnaround is enabled.java.util.Iterator<ScheduleMonitor.Task>iterator()voidsetActivityScheduleMonitor()If this method is called the detail of a ScheduleMonitor in the activity list is returned.voidsetArchiveScheduleMonitor()If this method is called the detail of a ScheduleMonitor in the statistics is returned.voidsetExplorerScheduleMonitor()If this method is called the detail of a ScheduleMonitor in the Explorer is returned.voidsetIncludeTaskProperties(boolean includeTaskProperties)If this method is set to true, the properties of task are also returned in the monitor.intsize()Returns the number of tasks in this schedule.-
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
-
ScheduleMonitor
@Deprecated public ScheduleMonitor(int runID, boolean active)Deprecated.This method is deprecated on 31-03-2016, please set "src" using methods setActivityScheduleMonitor, setArchiveScheduleMonitor, setExplorerScheduleMonitorConstructs a newScheduleMonitorrequest.- Parameters:
runID- RunIDactive- true if the monitor should be read from the activity window,
-
ScheduleMonitor
public ScheduleMonitor(int runID)
Constructs a newScheduleMonitorrequest.- Parameters:
runID- RunID
-
-
Method Detail
-
createRequest
protected void createRequest(com.uc4.util.XMLDocument doc, org.w3c.dom.Element request, ConnectionAttributes sessionInfo)Description copied from class:XMLRequestCreates the XML Document for the request. This method is used internally.- Specified by:
createRequestin classXMLRequest- Parameters:
doc- Document, used to create new Elementsrequest- Request Element - classes append information to this request elementsessionInfo- Information about the session
-
getSrc
protected java.lang.String getSrc()
Description copied from class:XMLRequestReturns the request source. This method is used internally.- Specified by:
getSrcin classXMLRequest- Returns:
- Source
-
setIncludeTaskProperties
public void setIncludeTaskProperties(boolean includeTaskProperties)
If this method is set to true, the properties of task are also returned in the monitor. The value should be set to false if the values are not used in order to improve the performance for large Schedule monitor tasks.- Parameters:
includeTaskProperties- true to include properties of each task in the response.
-
isReloadNextTurnaround
public boolean isReloadNextTurnaround()
Returnstrueif reload definition at period turnaround is enabled.- Returns:
- Reload at period turnaround?
-
getStatusCode
public int getStatusCode()
Returns the status of the task as integer.- Returns:
- Status code or
-1in case of an error. Possible return values are described in the status:AbstractTask.getStatusCode()
-
isActive
public boolean isActive()
- Returns:
- true if the if task is active, false otherwise
-
getStartTime
public java.lang.String getStartTime()
- Returns:
- start Time
-
handleContent
protected void handleContent(com.uc4.util.XMLDocument doc, ConnectionAttributes session)Description copied from class:XMLRequestSub classes extract the values from the XML document and provide public getter methods.- Overrides:
handleContentin classXMLRequest- Parameters:
doc- XML Documentsession- Info about the user session
-
createTask
protected ScheduleMonitor.Task createTask(org.w3c.dom.Element task, ConnectionAttributes session)
Creates a new ScheduleMonitor.Task in the Schedule monitor. Sub classes may override this method.- Parameters:
task- XML Element of the tasksession- Session Info- Returns:
- a new ScheduleMonitor.Task instance
-
iterator
public java.util.Iterator<ScheduleMonitor.Task> iterator()
- Specified by:
iteratorin interfacejava.lang.Iterable<ScheduleMonitor.Task>
-
size
public int size()
Returns the number of tasks in this schedule.- Returns:
- Task count
-
isAllowedInClientZero
protected boolean isAllowedInClientZero()
Description copied from class:XMLRequestThis method is used internally. Tests if thisXMLRequestis allowed in client 0. The default implementation returnsfalse, subclasses may override.- Overrides:
isAllowedInClientZeroin classXMLRequest- Returns:
trueif this request is allowed in client 0,falseotherwise
-
getRunID
public int getRunID()
Returns the run id of this schedule.- Returns:
- run
-
setActivityScheduleMonitor
public void setActivityScheduleMonitor()
If this method is called the detail of a ScheduleMonitor in the activity list is returned.
-
setArchiveScheduleMonitor
public void setArchiveScheduleMonitor()
If this method is called the detail of a ScheduleMonitor in the statistics is returned.
-
setExplorerScheduleMonitor
public void setExplorerScheduleMonitor()
If this method is called the detail of a ScheduleMonitor in the Explorer is returned.
-
-