1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 package javax.jdo.identity;
23
24 import java.io.Externalizable;
25 import java.io.IOException;
26 import java.io.ObjectInput;
27 import java.io.ObjectOutput;
28
29 /***
30 *
31 * @author clr
32 */
33 public class ConcreteTestIdentity extends SingleFieldIdentity {
34
35 ConcreteTestIdentity(Class cls) {
36 super(cls);
37 }
38
39 /*** This constructor is only for Serialization
40 */
41 public ConcreteTestIdentity() {
42 super();
43 }
44
45 public void writeExternal(ObjectOutput out) throws IOException {
46 super.writeExternal(out);
47 }
48
49 public void readExternal(ObjectInput in)
50 throws IOException, ClassNotFoundException {
51 super.readExternal(in);
52 }
53 }