
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Use this annotation on Properties, Association and
* EntityComposite declarations to specify their RDF URI.
* This is primarily used for RDF generation purposes.
*/
@Retention( RetentionPolicy.RUNTIME )
@Target( { ElementType.METHOD, ElementType.TYPE } )
@Documented
public @interface RDF
{
/** The URI of the type, property or association.
*/
String value();
}