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

org.picketlink.idm.jpa.annotations.IDMEntity Maven / Gradle / Ivy

The newest version!
package org.picketlink.idm.jpa.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;

/**
 * Denotes an entity bean as storing Identity Management state 
 * 
 * @author Shane Bryzak
 */
@Target({TYPE})
@Documented
@Retention(RUNTIME)
@Inherited
public @interface IDMEntity {
    EntityType value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy