KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > ejb3 > test > entity > 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.entity;
23
24 import java.util.Set JavaDoc;
25 import javax.persistence.CascadeType;
26 import javax.persistence.Entity;
27 import javax.persistence.FetchType;
28 import javax.persistence.GeneratedValue;
29 import javax.persistence.GenerationType;
30 import javax.persistence.Id;
31 import javax.persistence.JoinColumn;
32 import javax.persistence.ManyToMany;
33 import javax.persistence.OneToMany;
34 import javax.persistence.OneToOne;
35
36 /**
37  * Company customer
38  *
39  * @author Emmanuel Bernard
40  */

41 @Entity
42 public class FieldCustomer implements java.io.Serializable JavaDoc
43 {
44    @Id @GeneratedValue(strategy=GenerationType.IDENTITY)
45    Long JavaDoc id;
46
47    String JavaDoc name;
48
49    @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.EAGER, mappedBy="customer")
50    Set JavaDoc<FieldTicket> tickets;
51
52    @ManyToMany(cascade = {CascadeType.PERSIST, CascadeType.MERGE}, fetch = FetchType.EAGER, mappedBy="customers")
53    Set JavaDoc<FieldFlight> flights;
54
55    @OneToOne(cascade = {CascadeType.ALL})
56    @JoinColumn(name = "ADDRESS_ID")
57    FieldAddress address;
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 Set JavaDoc<FieldTicket> getTickets()
84    {
85       return tickets;
86    }
87
88    public void setTickets(Set JavaDoc<FieldTicket> tickets)
89    {
90       this.tickets = tickets;
91    }
92
93    public FieldAddress getAddress()
94    {
95       return address;
96    }
97
98    public void setAddress(FieldAddress address)
99    {
100       this.address = address;
101    }
102
103    public Set JavaDoc<FieldFlight> getFlights()
104    {
105       return flights;
106    }
107
108    public void setFlights(Set JavaDoc<FieldFlight> flights)
109    {
110       this.flights = flights;
111    }
112
113 }
114
115
Popular Tags