Abstract superclass for deriving custom security token classes for use in conjunction with Web Service Extensible Authentication Framework (WS-EAF) on the Content Engine server.

If your application has implemented a custom security token class using WSE-specific mechanisms, you must modify the implementation to derive from FileNet.Api.Authentication.CustomCredentials and you must rename the GetXml method to GetSecurityHeaderXml. You should not need to change the body of the method. You can remove any other methods that were overridden from the WSE base class.

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

ToggleSyntax

Visual Basic (Declaration)
Public MustInherit Class CustomCredentials _
	Inherits Credentials
C#
public abstract class CustomCredentials : Credentials
Visual C++
public ref class CustomCredentials abstract : public Credentials
JavaScript
FileNet.Api.Authentication.CustomCredentials = function();

Type.createClass(
	'FileNet.Api.Authentication.CustomCredentials',
	FileNet.Api.Authentication.Credentials);

ToggleInheritance Hierarchy

System..::.Object
  FileNet.Api.Authentication..::.Credentials
    FileNet.Api.Authentication..::.CustomCredentials

ToggleSee Also