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:
Albert Lee 2008-03-03 22:40:13 +00:00
parent 7487d73507
commit c3ad06e8ff
1 changed files with 2 additions and 2 deletions

View File

@ -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);