Represents an extensible, user-implemented action in response to an event triggered on a source object, or to an instance of a class definition getting created or updated. The API provides handler subinterfaces that you implement with the actions to be taken, coded as JavaScript or Java components.

An Action-based object identifies an implemented handler with the ProgId property. A JavaScript-implemented handler is set on the ScriptText property. A Java-implemented handler (JAR or class file) can be checked into a Content Engine object store as a ICodeModule object, requiring that the CodeModule property be set. Alternatively, you can set the location of the Java component in the class path of the application server.

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

ToggleSyntax

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

ToggleRemarks

Metadata

Auditable: false
AllowsInstances: false
AllowsSubClasses: false
ClassDefinitionName: None
IsDependent: false
IsHidden: false
Searchable: true
StorageType: ObjectStore
SuperclassName: Replicable

ToggleSee Also