org.hibernate.annotations.Parameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-annotations
Show all versions of hibernate-annotations
Annotations metadata for Hibernate
//$Id: Parameter.java 14736 2008-06-04 14:23:42Z hardy.ferentschik $
package org.hibernate.annotations;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Target;
/**
* Parameter (basically key/value pattern)
*
* @author Emmanuel Bernard
*/
@Target({})
@Retention(RUNTIME)
public @interface Parameter {
String name();
String value();
}