mirror of https://github.com/apache/openjpa.git
Change _state and JDBCConfigurationState from private to protect enabling JDBCFechConfigurationImpl subclass to propagate correct state information in subclass's newInstance() method call.
git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@633310 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7487d73507
commit
c3ad06e8ff
|
@ -61,7 +61,7 @@ public class JDBCFetchConfigurationImpl
|
|||
/**
|
||||
* Configurable JDBC state shared throughout a traversal chain.
|
||||
*/
|
||||
private static class JDBCConfigurationState implements Serializable {
|
||||
protected static class JDBCConfigurationState implements Serializable {
|
||||
public int eagerMode = 0;
|
||||
public int subclassMode = 0;
|
||||
public int type = 0;
|
||||
|
@ -72,7 +72,7 @@ public class JDBCFetchConfigurationImpl
|
|||
public int isolationLevel = -1;
|
||||
}
|
||||
|
||||
private final JDBCConfigurationState _state;
|
||||
protected final JDBCConfigurationState _state;
|
||||
|
||||
public JDBCFetchConfigurationImpl() {
|
||||
this(null, null);
|
||||
|
|
Loading…
Reference in New Issue