Provides a set of constants that specify the auto-classification status of a document. These constants are used in conjunction with the ClassificationStatus property to provide client applications a means of discovering whether a particular document is subject to auto-classification, and if so, whether or not the operation was successful.

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

ToggleSyntax

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

ToggleMembers

TypeMember nameDescription
NOT_CLASSIFIED
Specifies that auto-classification of the document has not been requested. This value is set automatically by the server when you check in a document and set its Checkin method's autoClassify parameter to DO_NOT_AUTO_CLASSIFY.
CLASSIFICATION_FAILED
Specifies that auto-classification of the document has failed.
CLASSIFICATION_COMPLETE
Specifies that auto-classification of the document has completed successfully.
CLASSIFICATION_PENDING
Specifies that a request for auto-classification of the document is pending. This value is automatically set by the server when you check in a document and set its Checkin method's autoClassify parameter to AUTO_CLASSIFY.

ToggleSee Also