org.identityconnectors.framework.spi
Annotation Type ConnectorClass


@Retention(value=RUNTIME)
@Target(value=TYPE)
public @interface ConnectorClass

This annotation must be present on each connector class.


Required Element Summary
 Class<? extends Configuration> configurationClass
          The configuration class for a given connector
 String displayNameKey
          The display name key.
 
Optional Element Summary
 String[] messageCatalogPaths
          The resource path(s) to the message catalog.
 

Element Detail

configurationClass

public abstract Class<? extends Configuration> configurationClass
The configuration class for a given connector


displayNameKey

public abstract String displayNameKey
The display name key. This must be a key in the message catalog.

messageCatalogPaths

public abstract String[] messageCatalogPaths
The resource path(s) to the message catalog. Message catalogs are searched in the order given such that the first one wins. By default, if no paths are specified, we use connector-package.Messages.properties

Default:
{}


Copyright © 2012. All Rights Reserved.