Provides a set of constants that specify the type of reservation created for a checked-out document.


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

Syntax

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

Members

Member NameDescription
OBJECT_STORE_DEFAULTSpecifies that the reservation type is the same as the default reservation type for the object store, which is specified by the DefaultReservationType property.
EXCLUSIVESpecifies an exclusive reservation, which is a reservation that only the owner can check in, modify, or delete.
COLLABORATIVESpecifies a collaborative reservation, which is a reservation that any user with the appropriate permissions can check in, modify, or delete.
REPLICATEDSpecifies that the reservation has been applied through replication. This reservation type is only allowed in operations performed by a replication provider. To prevent a simultaneous check in of a document in more than one location, this type of reservation can only be modified or checked in by a replication provider. This reservation type is similar to an exclusive reservation type. However, unlike an exclusive reservation, a replicated reservation can be deleted by someone with both DELETE and WRITE_OWNER access to the document.

See Also