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.models.company.idclass;
20:
21: import javax.persistence.*;
22: import org.apache.openjpa.persistence.models.company.*;
23:
24: @Entity(name="IDC_Address")
25: public class Address implements IAddress {
26: private static int ids = 1;
27:
28: @Id
29: private int id = ++ids;
30:
31: @Basic
32: private String streetAddress;
33:
34: @Basic
35: private String city;
36:
37: @Basic
38: private String state;
39:
40: @Basic
41: private String postalCode;
42:
43: @Basic
44: private String phoneNumber;
45:
46: public void setStreetAddress(String streetAddress) {
47: this .streetAddress = streetAddress;
48: }
49:
50: public String getStreetAddress() {
51: return this .streetAddress;
52: }
53:
54: public void setCity(String city) {
55: this .city = city;
56: }
57:
58: public String getCity() {
59: return this .city;
60: }
61:
62: public void setState(String state) {
63: this .state = state;
64: }
65:
66: public String getState() {
67: return this .state;
68: }
69:
70: public void setPostalCode(String postalCode) {
71: this .postalCode = postalCode;
72: }
73:
74: public String getPostalCode() {
75: return this .postalCode;
76: }
77:
78: public void setPhoneNumber(String phoneNumber) {
79: this .phoneNumber = phoneNumber;
80: }
81:
82: public String getPhoneNumber() {
83: return this.phoneNumber;
84: }
85: }
|