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.kernel.common.apps;
20:
21: import javax.persistence.Column;
22: import javax.persistence.Entity;
23: import javax.persistence.Id;
24: import javax.persistence.Table;
25:
26: @Entity
27: @Table(name="outerjvp")
28: public class OuterJoinValuePC {
29:
30: private String stringField;
31: private int value1;
32: private int value2;
33:
34: private int id;
35:
36: public OuterJoinValuePC() {
37: }
38:
39: public OuterJoinValuePC(int id) {
40: this .id = id;
41: }
42:
43: @Column(length=50)
44: public String getStringField() {
45: return this .stringField;
46: }
47:
48: public void setStringField(String stringField) {
49: this .stringField = stringField;
50: }
51:
52: public int getValue1() {
53: return this .value1;
54: }
55:
56: public void setValue1(int value1) {
57: this .value1 = value1;
58: }
59:
60: public int getValue2() {
61: return this .value2;
62: }
63:
64: public void setValue2(int value2) {
65: this .value2 = value2;
66: }
67:
68: @Id
69: public int getId() {
70: return id;
71: }
72:
73: public void setId(int id) {
74: this.id = id;
75: }
76: }
|