MemberDefAuthenticationCallback Property |
The callback that was supplied while setting up the security for the member
Namespace: Com.Tibco.As.SpaceAssembly: TIBCO.ActiveSpaces.Common (in TIBCO.ActiveSpaces.Common.dll) Version: 2.0.0.0 (2.1.5.12)
Syntaxpublic abstract AuthenticationCallback AuthenticationCallback { get; set; }
Public MustOverride Property AuthenticationCallback As AuthenticationCallback
Get
Set
public:
virtual property AuthenticationCallback^ AuthenticationCallback {
AuthenticationCallback^ get () abstract;
void set (AuthenticationCallback^ value) abstract;
}
abstract AuthenticationCallback : AuthenticationCallback with get, set
Property Value
Type:
AuthenticationCallback
The callback object
Remarks
Optional, if used, the ActiveSpaces framework invokes the
CreateUserCredential(AuthenticationInfo)
method during the join process of this member when the security domain's policy (which controls the chosen metaspace) defines
application-level client authentication. If authentication is required and the implementation doesn't provide the required client
credential, the member will not be able to connect to the metaspace. If the authentication is required and the implementation doesn't
provide a callback, the default credential provider will be used, which prompts for the required credential properties. If the security
domain's policy doesn't require authentication, specifying the callback is not required and any implementation provided, will be ignored.
See Also