Package com.uc4.communication.requests
Class TaskDetails
- java.lang.Object
-
- com.uc4.communication.requests.XMLRequest
-
- com.uc4.communication.requests.TaskDetails
-
public class TaskDetails extends XMLRequest
Gets the details of task in the activity window or statistic.
-
-
Constructor Summary
Constructors Constructor Description TaskDetails(int run)Constructs aTaskDetailsusing the specified RunID.TaskDetails(UserListItem user)Creates a new request to read the details of a logged on user.
-
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.java.lang.StringfindByName(java.lang.String name)Returns the value of the specified property name.protected java.lang.StringgetIdnr()Return the idnr attributeprotected java.lang.StringgetSrc()Returns the request source.java.util.Iterator<DetailGroup>groupIterator()Returns an iterator overDetailGroup.protected voidhandleContent(com.uc4.util.XMLDocument doc, ConnectionAttributes session)Sub classes extract the values from the XML document and provide public getter methods.protected booleanisAllowedInClientZero()This method is used internally.voidsetActivityDetail()If this method is called the detail of a task in the activity list is returned.voidsetArchiveDetail()If this method is called the detail of a task in the statistics is returned.voidsetForecastDetail()If this method is called the detail of a task in the autoforecast list is returned.intsize()Returns the number of groups.-
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
-
TaskDetails
public TaskDetails(int run)
Constructs aTaskDetailsusing the specified RunID. The detail type is set to statistics. To get the detail of a task in the activity list the methodsetActivityDetailcan be called.- Parameters:
run- entry returned from a statistic search
-
TaskDetails
public TaskDetails(UserListItem user)
Creates a new request to read the details of a logged on user.- Parameters:
user- Entry in the user list- Throws:
java.lang.IllegalArgumentException- if the user is not logged on: UserListItem.isLoggedOn() returns false
-
-
Method Detail
-
setActivityDetail
public void setActivityDetail()
If this method is called the detail of a task in the activity list is returned.
-
setForecastDetail
public void setForecastDetail()
If this method is called the detail of a task in the autoforecast list is returned.
-
setArchiveDetail
public void setArchiveDetail()
If this method is called the detail of a task in the statistics is returned.
-
groupIterator
public java.util.Iterator<DetailGroup> groupIterator()
Returns an iterator overDetailGroup.- Returns:
- iterator over
DetailGroup
-
size
public int size()
Returns the number of groups.- Returns:
- Integer containing the number of groups
-
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
-
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
-
getIdnr
protected java.lang.String getIdnr()
Return the idnr attribute- Returns:
- The idnr value as string
-
findByName
public java.lang.String findByName(java.lang.String name)
Returns the value of the specified property name.This method searches for the name in all sections and all groups of this detail. * The name of a property depends on the language.
- Parameters:
name- Name of the property- Returns:
- Value or null if the name is not found.
-
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
-
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
-
-