Package com.uc4.communication.requests
Class SetAgentProperties
- java.lang.Object
-
- com.uc4.communication.requests.XMLRequest
-
- com.uc4.communication.requests.SetAgentProperties
-
public class SetAgentProperties extends XMLRequest
-
-
Constructor Summary
Constructors Constructor Description SetAgentProperties(GetAgentProperties gap)creates new instance of SetAgentProperties.
-
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.voidsetHostTraceOptions(HostTraceOptions opt)Set the HostTraceOptions to the SetAgentProperties request prior to sending it to the server.voidsetMaxFileTransfer(int maxFileTransfer)Sets the maximum number of file transfer for this Agent.voidsetMaxJobs(int maxJobs)Sets the maximum number of jobs for this Agent.voidsetMaxReportBlocks(int maxReportBlocks)Sets the maximum number of report blocks for this Agent.-
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
-
SetAgentProperties
public SetAgentProperties(GetAgentProperties gap)
creates new instance of SetAgentProperties. You need to create and send a GetAgentProperties object 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:
gap- GetAgentProperties
-
-
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
-
setHostTraceOptions
public void setHostTraceOptions(HostTraceOptions opt)
Set the HostTraceOptions to the SetAgentProperties request prior to sending it to the server.- Parameters:
opt- Options
-
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. 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. 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. 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. The value-1can be used to set check interval to unlimited.- Parameters:
checkInterval- Positive Integer between 0 and 32767 or -1 for unlimited
-
-