KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > ejb3 > test > composite > FieldFlight


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.composite;
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.Transient;
35 import javax.persistence.Version;
36
37 /**
38  * Flight
39  *
40  * @author Emmanuel Bernard
41  */

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