Setting table name for Item to avoid collisions with o.a.o.p.simple.Item.

M    Item.java


git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@802207 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Dick 2009-08-07 21:29:30 +00:00
parent 38cd47a76d
commit a54f47dfc8
1 changed files with 3 additions and 0 deletions

View File

@ -19,13 +19,16 @@
package org.apache.openjpa.meta;
import java.io.Serializable;
import javax.persistence.CascadeType;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
@Entity
@Table(name="META_ITEM")
public class Item implements Serializable {
@Id