Retrieval of Installed Security Providers

Retrieves a list of the security providers installed in the Unwired Server.

Syntax

public Collection<String> getInstalledAuditDestinationProviders() throws SUPAdminException;

public Collection<String> getInstalledAuditFilterProviders() throws SUPAdminException;

public Collection<String> getInstalledAuditFormatterProviders() throws SUPAdminException;

public Collection<String> getInstalledAuthenticationProviders() throws SUPAdminException;

public Collection<String> getInstalledAuthorizationProviders() throws SUPAdminException;

Returns

If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.

Examples

  • Retrieval of installed security providers
    supSecConf.refresh();
    
    Collection<String> spvos_audit_dest = supSecConf
    		.getInstalledAuditDestinationProviders();
    Collection<String> spvos_audit_filter = supSecConf
    		.getInstalledAuditFilterProviders();
    Collection<String> spvos_audit_formatter = supSecConf
    		.getInstalledAuditFormatterProviders();
    Collection<String> spvos_authentication = supSecConf
    		.getInstalledAuthenticationProviders();
    Collection<String> spvos_authorization = supSecConf
    		.getInstalledAuthorizationProviders();