KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > ejb3 > test > manytomany > Flight


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.manytomany;
23
24 import java.util.Set JavaDoc;
25 import javax.persistence.Basic;
26 import javax.persistence.CascadeType;
27 import javax.persistence.Column;
28 import javax.persistence.Entity;
29 import javax.persistence.FetchType;
30 import javax.persistence.Id;
31 import javax.persistence.JoinColumn;
32 import javax.persistence.JoinTable;
33 import javax.persistence.ManyToMany;
34 import javax.persistence.ManyToOne;
35 import javax.persistence.Transient;
36 import javax.persistence.Version;
37
38 /**
39  * Flight
40  *
41  * @author Emmanuel Bernard
42  */

43 @Entity()
44 public class Flight implements java.io.Serializable JavaDoc
45 {
46    Long JavaDoc id;
47    String JavaDoc name;
48    long duration;
49    long durationInSec;
50    Integer JavaDoc version;
51    Company company;
52    Set JavaDoc<Customer> customers;
53
54    @Id
55    public Long JavaDoc getId()
56    {
57       return id;
58    }
59
60    public void setId(Long JavaDoc long1)
61    {
62       id = long1;
63    }
64
65    @Column(updatable = false, name = "flight_name", nullable = false, length = 50)
66    public String JavaDoc getName()
67    {
68       return name;
69    }
70
71    public void setName(String JavaDoc string)
72    {
73       name = string;
74    }
75
76    @Basic(fetch = FetchType.LAZY)
77    public long getDuration()
78    {
79       return duration;
80    }
81
82    public void setDuration(long l)
83    {
84       duration = l;
85       //durationInSec = duration / 1000;
86
}
87
88    @Transient
89    public long getDurationInSec()
90    {
91       return durationInSec;
92    }
93
94    public void setDurationInSec(long l)
95    {
96       durationInSec = l;
97    }
98
99    @Version
100    @Column(name = "OPTLOCK")
101    public Integer JavaDoc getVersion()
102    {
103       return version;
104    }
105
106    public void setVersion(Integer JavaDoc i)
107    {
108       version = i;
109    }
110
111    @ManyToOne(cascade = {CascadeType.PERSIST, CascadeType.MERGE})
112    @JoinColumn(name = "COMP_ID")
113    public Company getCompany()
114    {
115       return company;
116    }
117
118    public void setCompany(Company company)
119    {
120       this.company = company;
121    }
122
123    @ManyToMany(cascade = {CascadeType.PERSIST, CascadeType.MERGE}, fetch = FetchType.EAGER)
124    @JoinTable(name = "flight_customer_table",
125                      joinColumns = {@JoinColumn(name = "FLIGHT_ID")},
126                      inverseJoinColumns = {@JoinColumn(name = "CUSTOMER_ID")})
127    public Set JavaDoc<Customer> getCustomers()
128    {
129       return customers;
130    }
131
132    public void setCustomers(Set JavaDoc<Customer> customers)
133    {
134       this.customers = customers;
135    }
136 }
137
Popular Tags