1 package org.kuali.rice.krad.test.document; 2 3 /** 4 * A class which is only mapped in OJB, and not JPA. 5 */ 6 public class OjbOnly { 7 8 private String primaryKey; 9 private String principalId; 10 11 public String getPrimaryKey() { 12 return primaryKey; 13 } 14 15 public void setPrimaryKey(String primaryKey) { 16 this.primaryKey = primaryKey; 17 } 18 19 public String getPrincipalId() { 20 return principalId; 21 } 22 23 public void setPrincipalId(String principalId) { 24 this.principalId = principalId; 25 } 26 }