The security domain policy file location

Namespace: Com.Tibco.As.Space
Assembly: TIBCO.ActiveSpaces.Common (in TIBCO.ActiveSpaces.Common.dll) Version: 2.0.0.0 (2.4.0.001)

Syntax

C#
public abstract string SecurityPolicyFile { get; set; }
Visual Basic
Public MustOverride Property SecurityPolicyFile As String
	Get
	Set
Visual C++
public:
virtual property String^ SecurityPolicyFile {
	String^ get () abstract;
	void set (String^ value) abstract;
}
F#
abstract SecurityPolicyFile : string with get, set

Property Value

Type: String
The policy file location (may be null)

Remarks

Set the security properties for the member. A member can be configured either with a policy or a token file but not both. If the member is a controller (i.e. dedicated to enforce the security policy across a set of metaspaces), a valid policy file must be provided. Else, the policy file must not be provided and using a token file becomes optional. If used, a valid token file must be provided. Refer to the details on how to generate and edit token files in the manual.

See Also