| Namespace | http://www.mulesoft.org/schema/mule/documentum |
| Schema Location | http://www.mulesoft.org/schema/mule/documentum/current/mule-documentum.xsd (View Schema) |
| Schema Version | 1.0 |
| Minimum Mule Version | 3.2 |
Module Overview
Documentum Cloud Connector.
The Documentum Connector will allow to use the DFS SOAP API.
Almost every operation that can be done via the API can be done thru this connector.
Configuration
To use the this module within a flow the namespace to the module must be included. The resulting flow will look
similar to the following:
<mule xmlns="http://www.mulesoft.org/schema/mule/core"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:documentum="http://www.mulesoft.org/schema/mule/documentum"
xsi:schemaLocation="
http://www.mulesoft.org/schema/mule/core
http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/documentum
http://www.mulesoft.org/schema/mule/documentum/current/mule-documentum.xsd">
<!-- here goes your flows and configuration elements -->
</mule>
Connection Pool
This connector offers automatic connection management via the use of a connection pool. The pool will act a storage mechanism for all the connections that are in-use by the user of
this connector.
Prior to execution of a processor, the connector will attempt to lookup an already established connection and if one doesn't exists it will
create one. That lookup mechanism is done in the connection pool via the use of connection variables declared as keys.
The user of the connector can configure the pool by adding a connection-pooling-profile to the connector configuration like this:
<documentum:connection-pooling-profile maxActive="10" maxIdle="10"
exhaustedAction="WHEN_EXHAUSTED_GROW" maxWait="120" minEvictionMillis="60000" evictionCheckIntervalMillis="30000"/>
The following is a list of connection attributes, each connection attribute can be configured at the config element level or
they can also be added to each processor. If they are used at the processor level they get the benefit of full expression
resolution.
| Connection Attributes |
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. | | | |
| username |
|
A username |
String |
*/* |
UTF-8 |
| password |
|
A password |
String |
*/* |
UTF-8 |
| repository |
|
A repository |
String |
*/* |
UTF-8 |
| server |
|
A server |
String |
*/* |
UTF-8 |
Reconnection Strategies
Reconnection Strategies specify how a connector behaves when its connection fails. You can control how Mule attempts to reconnect by specifying a number of criteria:
- The type of exception
- Number and frequency of reconnection attempts
- The notifications generated, and more
With a reconnection strategy, you can better control the behavior of a failed connection, by configuring it, for example,
to re-attempt the connection only once every 15 minutes, and to give up after 30 attempts. You can also send an automatic
notification to your IT administrator whenever this reconnection strategy goes into effect. You can even define a strategy that
attempts to reconnect only during business hours. Such a setting can prove useful if your server is frequently shut down for
nightly maintenance.
Configuration
A reconnection strategy that allows the user to configure how many times a reconnection should be attempted and how long to wait between attempts.
<documentum:config>
<reconnect count="5" frequency="1000"/>
</documentum:config>
| Reconnect Attributes |
| Name | Default Value | Description |
| frequency |
2000 |
Optional. How often (in ms) to reconnect |
| count |
2 |
Optional. How many reconnection attempts to make |
For more information about reconnection strategies in Mule, or even how to write your own custom reconnection strategy please check this section.
Message Processors
<documentum:apply-acl>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| objectIdentity |
|
The object identity to receive the Acl. |
ObjectIdentity |
*/* |
|
| aclIdentity |
|
The acl identity to apply to the object identity. |
AclIdentity |
*/* |
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
<documentum:cancel-checkout>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| objIdentity |
#[payload] |
Optional. Identify the object to cancel the checkout. |
ObjectIdentity |
*/* |
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
Returns
| Return Type |
Description |
| ObjectIdentity |
ObjectIdentity if the cancellation was successful. |
<documentum:checkin>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| objIdentity |
#[payload] |
Optional. Identify the object to checkin. |
ObjectIdentity |
*/* |
|
| newContentPath |
|
The path to the file with the new content. |
String |
*/* |
UTF-8 |
| versionStrategy |
NEXT_MINOR |
Optional. The strategy to do the checkin. |
VersionStrategy |
*/* |
|
| isRetainLock |
false |
Optional. Specifies whether the object is to remain checked out and locked by the user after the new version is saved. |
boolean |
*/* |
|
| transferMode |
MTOM |
Optional. The transfer mode. |
ContentTransferMode |
*/* |
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
Child Elements
| Name | Default Value | Description | Java Type |
|---|
| <documentum:labels> |
|
The labels of this checkin. |
List<String> |
<documentum:checkout>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| objIdentity |
#[payload] |
Optional. Identify the object to checkout. |
ObjectIdentity |
*/* |
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
<documentum:copy-object>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| objectIdentity |
#[payload] |
Optional. Identify the object to copy. |
ObjectIdentity |
*/* |
|
| folderIdentity |
|
Identify the folder to copy to. |
ObjectIdentity |
*/* |
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
<documentum:create-acl>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| aclName |
|
The name of the acl. |
String |
*/* |
UTF-8 |
| aclDescription |
|
The description of the acl. |
String |
*/* |
UTF-8 |
| aclVisibility |
|
The visibility of the acl. |
AclVisibility |
*/* |
|
| aclType |
|
The type of the acl. |
AclType |
*/* |
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
Child Elements
| Name | Default Value | Description | Java Type |
|---|
| <documentum:acl-entries> |
|
The entries of the acl. |
List<AclEntry> |
Returns
| Return Type |
Description |
| Acl |
the Acl. |
<documentum:create-document>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| filePath |
|
Path to an existing file in the local system. |
String |
*/* |
UTF-8 |
| folderPath |
|
Path to an existing folder in the content server. |
String |
*/* |
UTF-8 |
| transferMode |
MTOM |
Optional. The transfer mode. |
ContentTransferMode |
*/* |
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
<documentum:create-folder>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| folderName |
|
Of the folder to create. |
String |
*/* |
UTF-8 |
| folderPath |
|
Path to an existing folder in the content server. |
String |
*/* |
UTF-8 |
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
<documentum:create-path>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| folderPath |
|
Path to create in the content server. |
String |
*/* |
UTF-8 |
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
<documentum:delete-acl>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
Child Elements
| Name | Default Value | Description | Java Type |
|---|
| <documentum:acl-names> |
|
The names of the acls. |
List<String> |
Returns
| Return Type |
Description |
| List<String> |
a list with names of the deleted acls. |
<documentum:delete-all-versions>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| objIdentity |
#[payload] |
Optional. Identify the object to delete. |
ObjectIdentity |
*/* |
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
Returns
| Return Type |
Description |
| ObjectIdentity |
ObjectIdentity if the deletion was successful. |
<documentum:delete-object>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| objectIdentity |
#[payload] |
Optional. The ObjectIdentity of the object to delete. |
ObjectIdentity |
*/* |
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
Returns
| Return Type |
Description |
| ObjectIdentity |
ObjectIdentity if the deletion was successful. |
<documentum:delete-version>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| objIdentity |
#[payload] |
Optional. Identify the object to delete. |
ObjectIdentity |
*/* |
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
Returns
| Return Type |
Description |
| ObjectIdentity |
ObjectIdentity if the deletion was successful. |
<documentum:get-acl>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
Child Elements
| Name | Default Value | Description | Java Type |
|---|
| <documentum:acl-names> |
|
The names of the acls. |
List<String> |
Returns
| Return Type |
Description |
| AclPackage |
the AclPackage. |
<documentum:get-acls>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
Returns
| Return Type |
Description |
| AclPackage |
the AclPackage. |
<documentum:get-checkout-info>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| objIdentity |
#[payload] |
Optional. Identify the object to get the checkout info. |
ObjectIdentity |
*/* |
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
<documentum:get-current>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| objIdentity |
#[payload] |
Optional. Identify the object to get the current version. |
ObjectIdentity |
*/* |
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
<documentum:get-object>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| objectIdentity |
#[payload] |
Optional. The ObjectIdentity of the object to download. |
ObjectIdentity |
*/* |
|
| outputPath |
|
Download path plus the fileName. |
String |
*/* |
UTF-8 |
| transferMode |
|
The transfer mode. |
ContentTransferMode |
*/* |
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
Returns
| Return Type |
Description |
| File |
the File. |
<documentum:get-version-info>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| objIdentity |
#[payload] |
Optional. Identify the object to get the version info. |
ObjectIdentity |
*/* |
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
<documentum:move-object>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| objectIdentity |
#[payload] |
Optional. Identify the object to move. |
ObjectIdentity |
*/* |
|
| toFolderIdentity |
|
Identify the folder to move from. |
ObjectIdentity |
*/* |
|
| fromFolderIdentity |
|
Identify the folder to move to. |
ObjectIdentity |
*/* |
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
<documentum:query>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| dqlStatement |
|
A DQL query. |
String |
*/* |
UTF-8 |
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
<documentum:update-acl>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| aclName |
|
The name of the acl. |
String |
*/* |
UTF-8 |
| aclDescription |
|
The description of the acl. |
String |
*/* |
UTF-8 |
| aclVisibility |
|
The visibility of the acl. |
AclVisibility |
*/* |
|
| aclType |
|
The type of the acl. |
AclType |
*/* |
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
Child Elements
| Name | Default Value | Description | Java Type |
|---|
| <documentum:acl-entries> |
|
The entries of the acl. |
List<AclEntry> |
Returns
| Return Type |
Description |
| Acl |
the Acl. |
<documentum:update-document>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| objectIdentity |
#[payload] |
Optional. The ObjectIdentity of the object to update. |
ObjectIdentity |
*/* |
|
| newContentFilePath |
|
Optional. The path to file with the new content. |
String |
*/* |
UTF-8 |
| transferMode |
MTOM |
Optional. The transfer mode. |
ContentTransferMode |
*/* |
|
| oldParentFolder |
|
Optional. The old parent folder ObjectIdentity. |
ObjectIdentity |
*/* |
|
| newParentFolder |
|
Optional. The new parent folder ObjectIdentity. |
ObjectIdentity |
*/* |
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
Child Elements
| Name | Default Value | Description | Java Type |
|---|
| <documentum:new-properties> |
|
Optional. A map with the new properties. |
Map<String, String> |
<documentum:update-folder>
Attributes
| Name | Default Value | Description | Java Type | MIME Type | Encoding |
| config-ref |
|
Optional. Specify which configuration to use. |
|
|
|
| objectIdentity |
#[payload] |
Optional. The ObjectIdentity of the object to update. |
ObjectIdentity |
*/* |
|
| oldParentFolder |
|
Optional. The old parent folder ObjectIdentity. |
ObjectIdentity |
*/* |
|
| newParentFolder |
|
Optional. The new parent folder ObjectIdentity. |
ObjectIdentity |
*/* |
|
Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. |
| username |
|
Optional. A username |
String |
*/* |
UTF-8 |
| password |
|
Optional. A password |
String |
*/* |
UTF-8 |
| repository |
|
Optional. A repository |
String |
*/* |
UTF-8 |
| server |
|
Optional. A server |
String |
*/* |
UTF-8 |
Child Elements
| Name | Default Value | Description | Java Type |
|---|
| <documentum:new-properties> |
|
Optional. A map with the new properties. |
Map<String, String> |
Message Sources
Transformers