Addition of an Active Attribution Provider

Adds an active attribution provider.

Syntax

public void addActiveAttributionProvider(SecurityProviderVO securityProvider) throws SUPAdminException;

Returns

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

Examples

  • Add active attribution provider
    supSecConf.refresh();
    
    SecurityProviderVO spvo = new SecurityProviderVO(
    		"com.sybase.security.core.NoSecAttributer");
    Map<String, String> properties = new HashMap<String, String>();
    spvo.setProperties(properties);
    properties.put("implementationClass", "com.sybase.security.core.NoSecAttributer");
    properties.put("providerType", "Attributer");
    supSecConf.addActiveAttributionProvider(spvo);
    supSecConf.commit();