Package com.uc4.communication.requests
Class DeepRename
- java.lang.Object
-
- com.uc4.communication.requests.XMLRequest
-
- com.uc4.communication.requests.DeepRename
-
public class DeepRename extends XMLRequest
Rename an object including all objects in the same folder and below.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDeepRename.AbortIfNameExistsModeAbortIfNameExistsMode.static classDeepRename.IncludeFolderNamesModeChangeFolderNameMode.
-
Constructor Summary
Constructors Constructor Description DeepRename()Constructs aDeepRenamerequest.
-
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.voidsetAbortIfNameExists(DeepRename.AbortIfNameExistsMode nameExistsMode)Sets the mode for abortIfNameExists.voidsetCleanPattern(java.lang.String cleanPattern)Sets the new name.voidsetIncludeFolderNames(DeepRename.IncludeFolderNamesMode includeFolderNamesMode)Sets the mode for includeFolderNames.voidsetNamePattern(java.lang.String namePattern)Sets the name pattern of the object to rename.-
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
-
-
-
-
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
-
setNamePattern
public void setNamePattern(java.lang.String namePattern)
Sets the name pattern of the object to rename.- Parameters:
namePattern- wildcard with exactly one '*': like "BEGIN.*.END" new object names will be created like "BEGIN.NAME.END pattern must contain a '*', strings before/after the '*' are optional
-
setCleanPattern
public void setCleanPattern(java.lang.String cleanPattern)
Sets the new name.- Parameters:
cleanPattern- wildcard with exactly one '*': like "BEFORE.*.AFTER" old object names are used to create new object names using parameter namePattern, however, cleanPatter is used to remove leading and/or trailing characters. in this example, prefix/postfix "BEFORE." / ".AFTER" is removed from the begin / end of old names and "BEGIN_" / "_END" is used as new prefix / postfix to create the new name, e.g., old name "BEFORE.NAME.AFTER" is converted to new name "BEGIN.NAME.END" pattern must contain a '*', strings before/after the '*' are optional
-
setAbortIfNameExists
public void setAbortIfNameExists(DeepRename.AbortIfNameExistsMode nameExistsMode)
Sets the mode for abortIfNameExists.- Parameters:
nameExistsMode- One of theAbortIfNameExistsModedefined in this class
-
setIncludeFolderNames
public void setIncludeFolderNames(DeepRename.IncludeFolderNamesMode includeFolderNamesMode)
Sets the mode for includeFolderNames.- Parameters:
includeFolderNamesMode- One of theIncludeFolderNamesModedefined in this class
-
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
-
-