All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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[] value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy