01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */
19: package org.apache.openjpa.persistence.jdbc.common.apps;
20:
21: import java.util.*;
22:
23: import javax.persistence.*;
24:
25: /**
26: * <p>Persistent type used in testing.</p>
27: *
28: * @author Abe White
29: */
30: @Entity
31: public class HelperPC2 {
32: @Column(name="strngfld",length=50)
33: private String stringField;
34:
35: @Id
36: @GeneratedValue
37: private int id;
38:
39: @OneToOne(cascade={CascadeType.PERSIST,CascadeType.REMOVE})
40: private HelperPC3 helper;
41: @Column(name="helpcoll")
42: private List helperCollection = new LinkedList();
43:
44: public HelperPC2() {
45: }
46:
47: public HelperPC2(int id) {
48: this .id = id;
49: }
50:
51: public String getStringField() {
52: return this .stringField;
53: }
54:
55: public void setStringField(String stringField) {
56: this .stringField = stringField;
57: }
58:
59: public HelperPC3 getHelper() {
60: return this .helper;
61: }
62:
63: public void setHelper(HelperPC3 helper) {
64: this .helper = helper;
65: }
66:
67: public List getHelperCollection() {
68: return this .helperCollection;
69: }
70:
71: public void setHelperCollection(List helperCollection) {
72: this .helperCollection = helperCollection;
73: }
74:
75: public int getId() {
76: return id;
77: }
78:
79: public void setId(int id) {
80: this.id = id;
81: }
82: }
|