Provides a set of constants to specify whether to check in a document reservation as a new minor or new major version. During a minor version check-in, the new minor document version is marked as in-process (its VersionStatus property is set to IN_PROCESS) and the previous in-process minor document version (if it exists) is marked as superseded (its VersionStatus property is set to SUPERSEDED). During a major version check-in, the new major document version is marked as released (its VersionStatus property is set to RELEASED) and the previous released major document version and in-process minor document version (if they exist) are marked as superseded.


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

Syntax

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

Members

Member NameDescription
MAJOR_VERSIONSpecifies that a document reservation will be checked in as a new major version.
MINOR_VERSIONSpecifies that a document reservation will be checked in as a new minor version.

See Also