Customizable base for classes of objects that have a system-generated, unique, monotonically increasing sequence number property. ICmAbstractSequential can also be used for new classes of queue entry objects processed by a custom application.

As an abstract class definition, the class' metadata is not mutable. You must subclass this class to create a concrete root class with customizable metadata. The underlying table of the root class provides ordered rows implemented by a column sequence for every insert, which can be used to process entries strictly in the order in which they were created.

See Custom Root Classes Concepts

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

ToggleSyntax

Visual Basic (Declaration)
Public Interface ICmAbstractSequential _
	Implements IRepositoryObject, IIndependentlyPersistableObject, IIndependentObject, IEngineObject,  _
	ICloneable
C#
public interface ICmAbstractSequential : IRepositoryObject, 
	IIndependentlyPersistableObject, IIndependentObject, IEngineObject, ICloneable
Visual C++
public interface class ICmAbstractSequential : IRepositoryObject, 
	IIndependentlyPersistableObject, IIndependentObject, IEngineObject, ICloneable
JavaScript
FileNet.Api.Util.ICmAbstractSequential = function();
FileNet.Api.Util.ICmAbstractSequential.createInterface('FileNet.Api.Util.ICmAbstractSequential');

ToggleRemarks

Metadata

Auditable: false
AllowsInstances: false
AllowsSubClasses: true
ClassDefinitionName: ClassDefinition
IsDependent: false
IsHidden: false
Searchable: false
StorageType: ObjectStore
SuperclassName: GenericObject

ToggleSee Also