View Javadoc
1   package org.kuali.rice.krad.test.document.bo;
2   
3   import javax.persistence.Column;
4   import javax.persistence.Entity;
5   import javax.persistence.Id;
6   import javax.persistence.Table;
7   
8   /**
9    * DataObject only mapped to JPA (non-legacy)
10   */
11  @Entity
12  @Table(name="KR_KIM_TEST_BO") // this is a convenient test table
13  public class JPADataObject {
14      @Id
15      @Column(name="PK")
16      private String pk;
17  }