KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > ejb3 > test > dependent > FieldCustomer


1 /*
2   * JBoss, Home of Professional Open Source
3   * Copyright 2005, JBoss Inc., and individual contributors as indicated
4   * by the @authors tag. See the copyright.txt in the distribution for a
5   * full listing of individual contributors.
6   *
7   * This is free software; you can redistribute it and/or modify it
8   * under the terms of the GNU Lesser General Public License as
9   * published by the Free Software Foundation; either version 2.1 of
10   * the License, or (at your option) any later version.
11   *
12   * This software is distributed in the hope that it will be useful,
13   * but WITHOUT ANY WARRANTY; without even the implied warranty of
14   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15   * Lesser General Public License for more details.
16   *
17   * You should have received a copy of the GNU Lesser General Public
18   * License along with this software; if not, write to the Free
19   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21   */

22 package org.jboss.ejb3.test.dependent;
23
24 import javax.persistence.AttributeOverride;
25 import javax.persistence.AttributeOverrides;
26 import javax.persistence.Column;
27 import javax.persistence.Embedded;
28 import javax.persistence.Entity;
29 import javax.persistence.GeneratedValue;
30 import javax.persistence.GenerationType;
31 import javax.persistence.Id;
32
33 /**
34  * Company customer
35  *
36  * @author Emmanuel Bernard
37  */

38 @Entity
39 public class FieldCustomer implements java.io.Serializable JavaDoc
40 {
41    @Id
42    @GeneratedValue(strategy= GenerationType.IDENTITY)
43    Long JavaDoc id;
44
45    String JavaDoc name;
46
47    @Embedded
48    Address address;
49
50    @Embedded @AttributeOverrides({
51    @AttributeOverride(name = "street", column = @Column(name = "street2")),
52    @AttributeOverride(name = "city", column = @Column(name = "city2")),
53    @AttributeOverride(name = "state", column = @Column(name = "state2")),
54    @AttributeOverride(name = "zip", column = @Column(name = "zip2"))
55    })
56
57    FieldAddress address2;
58
59    public FieldCustomer()
60    {
61    }
62
63    public Long JavaDoc getId()
64    {
65       return id;
66    }
67
68    public String JavaDoc getName()
69    {
70       return name;
71    }
72
73    public void setId(Long JavaDoc long1)
74    {
75       id = long1;
76    }
77
78    public void setName(String JavaDoc string)
79    {
80       name = string;
81    }
82
83    public Address getAddress()
84    {
85       return address;
86    }
87
88    public void setAddress(Address address)
89    {
90       this.address = address;
91    }
92
93    public FieldAddress getAddress2()
94    {
95       return address2;
96    }
97
98    public void setAddress2(FieldAddress address)
99    {
100       this.address2 = address;
101    }
102
103 }
104
105
Popular Tags