Restricts a group membership search to within the realms configured in FileNet Enterprise Manager.

By default (that is, when the property value is False), the Content Engine Server automatically traces cross-realm group membership (also called cross-domain group membership in Active Directory). If it reaches a realm that is not configured in FileNet Enterprise Manager, the Content Engine server returns a "Realm not found" error and group membership search processing stops. However, if the property value is True when this situation occurs, the Content Engine server logs an informational message to the Content Engine server error log and the group membership search continues.

Note: This property is not supported for the Windows Active Directory Application Mode (ADAM) directory service provider. This is because ADAM does not support cross-realm group memberships (cross-partition memberships, in ADAM terminology).


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

Syntax

Visual Basic (Declaration)
Property RestrictMembershipToConfiguredRealms As Nullable(Of Boolean)
C#
Nullable<bool> RestrictMembershipToConfiguredRealms { get; set; }
C++
property Nullable<bool> RestrictMembershipToConfiguredRealms abstract  {
    Nullable<bool> get();
    void set(Nullable<boolvalue);
}
J#
/** property */
public Nullable<bool> get_RestrictMembershipToConfiguredRealms();

/** property */
public void set_RestrictMembershipToConfiguredRealms(Nullable<boolvalue);
JScript
public function get RestrictMembershipToConfiguredRealms() : Nullable<bool>

public function set RestrictMembershipToConfiguredRealms(value : Nullable<bool>);

Remarks

See Also