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

org.hibernate.annotations.MetaValue Maven / Gradle / Ivy

There is a newer version: 3.5.6-Final
Show newest version
//$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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy