Package com.uc4.communication.requests
Class SetAgentGroupProperties
- java.lang.Object
-
- com.uc4.communication.requests.XMLRequest
-
- com.uc4.communication.requests.SetAgentGroupProperties
-
public class SetAgentGroupProperties extends XMLRequest
Sets properties of agent group
-
-
Constructor Summary
Constructors Constructor Description SetAgentGroupProperties(java.lang.String agentGroupName)creates new instance ofSetAgentGroupProperties.
-
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 java.lang.StringgetSrc()Returns the request source.protected booleanisAllowedInClientZero()This method is used internally.booleanisDirty()Returns true if the object data has changedvoidsetCheckInterval(int checkInterval)Sets the check interval for this Agent Group.voidsetMaxFileTransfer(int maxFileTransfer)Sets the maximum number of file transfer for this Agent Group.voidsetMaxJobs(int maxJobs)Sets the maximum number of jobs for this Agent Group.voidsetMaxReportBlocks(int maxReportBlocks)Sets the maximum number of report blocks for this Agent Group.-
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, handleContent, handleResponse, ignoreMessageBox, send, setMessageBox, showQuarantineNotification
-
-
-
-
Constructor Detail
-
SetAgentGroupProperties
public SetAgentGroupProperties(java.lang.String agentGroupName)
creates new instance ofSetAgentGroupProperties. You need to create and send aGetAgentGroupPropertiesobject first to get the current value. you might then override certain values with new content prior to sending the set request to the server.- Parameters:
agentGroupName- Name of the AgentGroup
-
-
Method Detail
-
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
-
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
-
isDirty
public boolean isDirty()
Returns true if the object data has changed- Returns:
- boolean
-
setMaxJobs
public void setMaxJobs(int maxJobs)
Sets the maximum number of jobs for this Agent Group. The value-1can be used to set max jobs to unlimited.- Parameters:
maxJobs- Positive Integer between 0 and 100000 or -1 for unlimited
-
setMaxFileTransfer
public void setMaxFileTransfer(int maxFileTransfer)
Sets the maximum number of file transfer for this Agent Group. The value-1can be used to set max file transfer to unlimited.- Parameters:
maxFileTransfer- Positive Integer between 0 and 100000 or -1 for unlimited
-
setMaxReportBlocks
public void setMaxReportBlocks(int maxReportBlocks)
Sets the maximum number of report blocks for this Agent Group. The value-1can be used to set max report blocks transfer to unlimited.- Parameters:
maxReportBlocks- Positive Integer between 0 and 10000 or -1 for unlimited
-
setCheckInterval
public void setCheckInterval(int checkInterval)
Sets the check interval for this Agent Group. The value-1can be used to set check interval to unlimited.- Parameters:
checkInterval- Positive Integer between 0 and 32767 or -1 for unlimited
-
-