Moves the content data of an object to a new storage area. For IVersionSeries, this method moves the content for all associated document versions.

After a successful call to the MoveContent method, the content data is deleted from the original location unless the content data is IBM FileNet Content Federation Services for Image Services federated content. To enable deletion of IBM FileNet Content Federation Services for Image Services federated content from its original location, set the com.filenet.replication.EnableLegacyMoveContentBehaviour JVM parameter to true for your application server. For information about how to assign JVM parameter values for your application server, see Setting JVM parameters.

You can force content to be encrypted, re-encrypted, or decrypted based on the current encryption configuration for the destination storage area. Likewise, you can force content to be compressed or decompressed based on the content compression configuration for the destination storage area. For more information, see Content encryption and Content compression.

Namespace:  FileNet.Api.Core
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Sub MoveContent ( _
	storageArea As IStorageArea _
)
C#
void MoveContent(
	IStorageArea storageArea
)
Visual C++
void MoveContent(
	IStorageArea^ storageArea
)
JavaScript
function moveContent(storageArea);

Parameters

storageArea
Type: FileNet.Api.Admin..::.IStorageArea
A StorageArea object specifying the new storage area for this object's content data.

ToggleSee Also