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)

Syntax

Visual Basic (Declaration)
Public Enum DocClassificationStatus
C#
public enum DocClassificationStatus
C++
public enum class DocClassificationStatus
J#
public enum DocClassificationStatus
JScript
public enum DocClassificationStatus

Members

Member NameDescription
CLASSIFICATION_COMPLETESpecifies that auto-classification of the document has completed successfully.
CLASSIFICATION_FAILEDSpecifies that auto-classification of the document has failed.
NOT_CLASSIFIEDSpecifies 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_PENDINGSpecifies 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.

See Also