Package com.uc4.communication.requests
Class RenameObject
- java.lang.Object
-
- com.uc4.communication.requests.XMLRequest
-
- com.uc4.communication.requests.RenameObject
-
public class RenameObject extends XMLRequest
Renames an existing UC4 Object.
-
-
Constructor Summary
Constructors Constructor Description RenameObject(IFolder oldName, UC4ObjectName newName)This constructor is used to rename folders.RenameObject(IFolder oldName, UC4ObjectName newName, java.lang.String title)This constructor is used to rename folders.RenameObject(UC4ObjectName oldName, UC4ObjectName newName, IFolder folder)Deprecated.Use RenameObject(UC4ObjectName oldName, UC4ObjectName newName, IFolder folder, String title) insteadRenameObject(UC4ObjectName oldName, UC4ObjectName newName, IFolder folder, java.lang.String title)Constructs aRenameObject.
-
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 org.w3c.dom.ElementgetReplaceRequest()protected java.lang.StringgetSrc()Returns the request source.protected voidhandleContent(com.uc4.util.XMLDocument doc, ConnectionAttributes session)Sub classes extract the values from the XML document and provide public getter methods.protected booleanignoreMessageBox()protected booleanisAllowedInClientZero()This method is used internally.voidsetForceRename()Method to rename the object forcefully.voidsetRenameIfUsed(boolean renameIfUsed)The parameterrenameIfUsedcan be set tofalseto prevent objects from beeing renamend if they are used in other objects.-
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, send, setMessageBox, showQuarantineNotification
-
-
-
-
Constructor Detail
-
RenameObject
@Deprecated public RenameObject(UC4ObjectName oldName, UC4ObjectName newName, IFolder folder)
Deprecated.Use RenameObject(UC4ObjectName oldName, UC4ObjectName newName, IFolder folder, String title) insteadConstructs aRenameObject. This constructor is used to rename UC4 Objects except folders. To rename a folder use the constructorRenameObject(IFolder oldName, UC4ObjectName newName).- Parameters:
oldName- Name of the UC4 Object which should be renamed.newName- New namefolder- Folder containing the object
-
RenameObject
public RenameObject(UC4ObjectName oldName, UC4ObjectName newName, IFolder folder, java.lang.String title)
Constructs aRenameObject. This constructor is used to rename UC4 Objects except folders. To rename a folder use the contructorRenameObject(IFolder oldName, UC4ObjectName newName).- Parameters:
oldName- Name of the UC4 Object which should be renamed.newName- New namefolder- Folder containing the objecttitle- New title of the object
-
RenameObject
public RenameObject(IFolder oldName, UC4ObjectName newName)
This constructor is used to rename folders.- Parameters:
oldName- Folder which should be renamednewName- New name of the folder
-
RenameObject
public RenameObject(IFolder oldName, UC4ObjectName newName, java.lang.String title)
This constructor is used to rename folders.- Parameters:
oldName- Folder which should be renamednewName- New name of the foldertitle- New title of the folder
-
-
Method Detail
-
setRenameIfUsed
public void setRenameIfUsed(boolean renameIfUsed)
The parameterrenameIfUsedcan be set tofalseto prevent objects from beeing renamend if they are used in other objects. The default behavior is to rename without searching for the use.- Parameters:
renameIfUsed- If set to false a message box is returned if the object is used.
-
setForceRename
public void setForceRename()
Method to rename the object forcefully.
-
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
-
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
-
getReplaceRequest
protected org.w3c.dom.Element getReplaceRequest()
-
ignoreMessageBox
protected boolean ignoreMessageBox()
- Overrides:
ignoreMessageBoxin classXMLRequest
-
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
-
-