Represents a general interface that can be subclassed. A CustomObject object has no inherent semantics, but is independently securable and can be persisted to an object store. A CustomObject does not carry content, is not versionable, and does not support lifecycle functionality.

The ICustomObject base interface provides a minimal set of properties (such as Creator, DateCreated, and Name). Unlike most Content Engine objects, the ICustomObject base interface does not have a specific property defined as the name property in order that subclassed objects can define it in an appropriate way. Because a CustomObject object does not have a defined name property, the value of its Name property reverts to the default value, which is the same as its ID property.

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

ToggleSyntax

Visual Basic (Declaration)
Public Interface ICustomObject _
	Implements IRepositoryObject, IContainable, ICmHoldable, IReplicable,  _
	ISubscribable, IIndependentlyPersistableObject, IIndependentObject, IEngineObject, ICloneable
C#
public interface ICustomObject : IRepositoryObject, 
	IContainable, ICmHoldable, IReplicable, ISubscribable, IIndependentlyPersistableObject, 
	IIndependentObject, IEngineObject, ICloneable
Visual C++
public interface class ICustomObject : IRepositoryObject, 
	IContainable, ICmHoldable, IReplicable, ISubscribable, IIndependentlyPersistableObject, 
	IIndependentObject, IEngineObject, ICloneable
JavaScript
FileNet.Api.Core.ICustomObject = function();
FileNet.Api.Core.ICustomObject.createInterface('FileNet.Api.Core.ICustomObject');

ToggleRemarks

Metadata

Auditable: true
AllowsInstances: true
AllowsSubClasses: true
ClassDefinitionName: ReplicableClassDefinition
IsDependent: false
IsHidden: false
Searchable: true
StorageType: ObjectStore
SuperclassName: Containable

ToggleSee Also