Adjustment of the Sequence of Active Security Providers

Security provider instances are grouped together by their provider types (attribution provider, audit provider, authentication provider, and authorization provider) and ordered in a sequence.

The following methods adjust the sequence of security providers in each group.

Syntax

public void moveDownActiveAuditProvider(String auditProviderID) throws SUPAdminException;

public void moveDownActiveAuthenticationProvider(String authenticationProviderID) throws SUPAdminException;

public void moveDownActiveAuthorizationProvider(String authorizationProviderID) throws SUPAdminException;



public void moveUpActiveAuditProvider(String auditProviderID) throws SUPAdminException;

public void moveUpActiveAuthenticationProvider(String authenticationProviderID) throws SUPAdminException;

public void moveUpActiveAuthorizationProvider(String authorizationProviderID) throws SUPAdminException;

Returns

If successful, returns silently. If unsuccessful, returns SUPAdminException.

Examples