mirror of https://github.com/apache/openjpa.git
fix serializable exception
git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1757131 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cdfd6e274e
commit
3d4f675038
|
@ -19,6 +19,7 @@
|
|||
package
|
||||
org.apache.openjpa.persistence.annotations.common.apps.annotApp.annotype;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.*;
|
||||
|
||||
import javax.persistence.*;
|
||||
|
@ -119,7 +120,7 @@ public class AnnoTest2 {
|
|||
return manyMany;
|
||||
}
|
||||
|
||||
public static class Oid {
|
||||
public static class Oid implements Serializable {
|
||||
|
||||
public long pk1;
|
||||
public String pk2;
|
||||
|
|
Loading…
Reference in New Issue