001package org.kuali.rice.krad.test.document;
002
003/**
004 * A class which is only mapped in OJB, and not JPA.
005 */
006public class OjbOnly {
007
008    private String primaryKey;
009    private String principalId;
010
011    public String getPrimaryKey() {
012        return primaryKey;
013    }
014
015    public void setPrimaryKey(String primaryKey) {
016        this.primaryKey = primaryKey;
017    }
018
019    public String getPrincipalId() {
020        return principalId;
021    }
022
023    public void setPrincipalId(String principalId) {
024        this.principalId = principalId;
025    }
026}