org.hibernate.annotations.MetaValue 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$
package org.hibernate.annotations;
/**
* Represent a discriminator value associated to a given entity type
* @author Emmanuel Bernard
*/
public @interface MetaValue {
/**
* entity type
*/
Class targetEntity();
/**
* discriminator value stored in database
*/
String value();
}