org.picketlink.idm.credential.spi.annotations.CredentialHandlers Maven / Gradle / Ivy
The newest version!
package org.picketlink.idm.credential.spi.annotations;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import org.picketlink.idm.credential.spi.CredentialHandler;
/**
* This annotation is used to declare which CredentialHandlers are supported by an IdentityStore implementation.
*
* @author Shane Bryzak
*/
@Target({TYPE})
@Documented
@Retention(RUNTIME)
@Inherited
public @interface CredentialHandlers {
Class extends CredentialHandler>[] value();
}