mirror of https://github.com/apache/openjpa.git
Added Serialzable interface
git-svn-id: https://svn.apache.org/repos/asf/incubator/openjpa/trunk@427685 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e889cd2aef
commit
021c4b85d5
|
@ -15,6 +15,7 @@
|
|||
*/
|
||||
package org.apache.openjpa.jdbc.kernel;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.sql.ResultSet;
|
||||
import java.util.Collection;
|
||||
import java.util.Collections;
|
||||
|
@ -56,7 +57,7 @@ public class JDBCFetchConfigurationImpl
|
|||
/**
|
||||
* Configurable JDBC state shared throughout a traversal chain.
|
||||
*/
|
||||
private static class JDBCConfigurationState {
|
||||
private static class JDBCConfigurationState implements Serializable {
|
||||
public int eagerMode = 0;
|
||||
public int subclassMode = 0;
|
||||
public int type = 0;
|
||||
|
|
Loading…
Reference in New Issue