Identifies the default geographical site associated with the FileNet P8 domain. The value of this property is initialized to "Initial Site" when the Content Engine server is initialized and the GCD is created. Initial Site is a system-generated instance of the Site class that holds the Virtual Server (and thus, Server Instance) of the current application server instance. A user with system administrator rights can subsequently assign a different site to be the default, if desired.

If you do not specify a site when creating a site-related object (such as an ObjectStore object), the created object's Site property is set to the value of the DefaultSite property.


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

Syntax

Visual Basic (Declaration)
Property DefaultSite As ISite
C#
ISite DefaultSite { get; set; }
C++
property ISite DefaultSite abstract  {
    ISite get();
    void set(ISite value);
}
J#
/** property */
public ISite get_DefaultSite();

/** property */
public void set_DefaultSite(ISite value);
JScript
public function get DefaultSite() : ISite

public function set DefaultSite(value : ISite);

Remarks

See Also