KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > ejb3 > test > entity > 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.entity;
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.ManyToMany;
33 import javax.persistence.ManyToOne;
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
48    @Column(updatable = false, name = "flight_name", nullable = false, length = 50)
49    String JavaDoc name;
50
51    @Basic(fetch = FetchType.LAZY)
52    long duration;
53
54    @Transient
55    long durationInSec;
56
57    @Version
58    @Column(name = "OPTLOCK")
59    Integer JavaDoc version;
60
61    @ManyToOne(cascade = {CascadeType.PERSIST, CascadeType.MERGE})
62    @JoinColumn(name = "COMP_ID")
63    FieldCompany company;
64
65    @ManyToMany(cascade = {CascadeType.PERSIST, CascadeType.MERGE}, fetch = FetchType.EAGER)
66    Set JavaDoc<FieldCustomer> customers;
67
68    public Long JavaDoc getId()
69    {
70       return id;
71    }
72
73    public void setId(Long JavaDoc long1)
74    {
75       id = long1;
76    }
77
78    public String JavaDoc getName()
79    {
80       return name;
81    }
82
83    public void setName(String JavaDoc string)
84    {
85       name = string;
86    }
87
88    public long getDuration()
89    {
90       return duration;
91    }
92
93    public void setDuration(long l)
94    {
95       duration = l;
96    }
97
98    public long getDurationInSec()
99    {
100       return durationInSec;
101    }
102
103    public void setDurationInSec(long l)
104    {
105       durationInSec = l;
106    }
107
108    public Integer JavaDoc getVersion()
109    {
110       return version;
111    }
112
113    public void setVersion(Integer JavaDoc i)
114    {
115       version = i;
116    }
117
118    public FieldCompany getCompany()
119    {
120       return company;
121    }
122
123    public void setCompany(FieldCompany company)
124    {
125       this.company = company;
126    }
127
128    public Set JavaDoc<FieldCustomer> getCustomers()
129    {
130       return customers;
131    }
132
133    public void setCustomers(Set JavaDoc<FieldCustomer> customers)
134    {
135       this.customers = customers;
136    }
137 }
138
Popular Tags