Provides a set of constants that specify the direction in which instances of a class or values of a property can be replicated between a Content Engine object store and an external repository.

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

ToggleSyntax

Visual Basic (Declaration)
Public Enumeration ReplicationDirection
C#
public enum ReplicationDirection
Visual C++
public enum class ReplicationDirection
JavaScript
FileNet.Api.Constants.ReplicationDirection = function();
FileNet.Api.Constants.ReplicationDirection.createEnum('FileNet.Api.Constants.ReplicationDirection', false);

ToggleMembers

TypeMember nameDescription
BOTH
For ExternalClassAlias objects, this constant specifies that instances of an external class can be replicated from an external repository to a Content Engine object store and can also be a target for objects replicated from a Content Engine object store to an external repository.

For ExternalPropertyAlias objects, this constant specifies that property values can be copied in either an inbound or an outbound direction, depending on the direction of propagation.

INBOUND
For ExternalClassAlias objects, this constant specifies that instances of an external class can be replicated from an external repository to a Content Engine object store, which results in the creation of instances of the mapped Content Engine class.

For ExternalPropertyAlias objects, this constant specifies that a value of an external property is copied into a mapped Content Engine property when external repository changes are propagated to an instance of the mapped Content Engine class.

OUTBOUND
For ExternalClassAlias objects, this constant specifies that instances of the mapped Content Engine class can be replicated to an external repository, which results in the creation of instances of the specified external class.

For ExternalPropertyAlias objects, this constant specifies that a value of the mapped Content Engine property is copied to the specified external repository property when Content Engine changes are propagated to an instance of the external class.

ToggleSee Also