Provides a set of constants to indicate the type of a domain. These constants are used in conjunction with the DomainType property of a Domain object to provide client applications a means of discovering the type of the domain: stand-alone, master, or tenant.

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

ToggleSyntax

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

ToggleMembers

TypeMember nameDescription
STANDALONE
Indicates that the domain is a stand-alone domain. A stand-alone domain does not allow any tenant domains to be created.
MASTER
Indicates that the domain is a master domain. A master domain is operationally the same as a stand-alone domain, but it allows for the optional creation of one or more tenant domains, which share the same physical infrastructure and resources as the master domain.
TENANT
Indicates that the domain is a tenant domain. Each tenant domain shares the physical infrastructure and resources of a master domain, but appears to the API to be a stand-alone domain.

ToggleSee Also