1   /*
2    * Copyright 2005 The Apache Software Foundation.
3    * 
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at 
7    * 
8    *     http://www.apache.org/licenses/LICENSE-2.0
9    * 
10   * Unless required by applicable law or agreed to in writing, software 
11   * distributed under the License is distributed on an "AS IS" BASIS, 
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
13   * See the License for the specific language governing permissions and 
14   * limitations under the License.
15   */
16  
17  /*
18   * ConcreteTestIdentity.java
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      }