mirror of https://github.com/apache/openjpa.git
OPENJPA-1591: Add PersistenceCapeable setter to StateManagerImpl to allow for greater extensibility.
git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@926180 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
72d0c20634
commit
87ea1de7c2
|
@ -3381,4 +3381,8 @@ public class StateManagerImpl
|
|||
public boolean requiresFetch(FieldMetaData fmd) {
|
||||
return (_broker.getFetchConfiguration().requiresFetch(fmd) != FetchConfiguration.FETCH_NONE);
|
||||
}
|
||||
|
||||
public void setPc(PersistenceCapable pc) {
|
||||
_pc = pc;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue