KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > ejb3 > test > entity > 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.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.GeneratedValue;
31 import javax.persistence.GenerationType;
32 import javax.persistence.Id;
33 import javax.persistence.JoinColumn;
34 import javax.persistence.ManyToMany;
35 import javax.persistence.ManyToOne;
36 import javax.persistence.Table;
37 import javax.persistence.TableGenerator;
38 import javax.persistence.Transient;
39 import javax.persistence.Version;
40
41 /**
42  * Flight
43  *
44  * @author Emmanuel Bernard
45  */

46 @TableGenerator(
47    name="default-generator",
48    table="TEST_GENERATOR_TABLE",
49    pkColumnValue= "TEST_PK",
50    allocationSize = 20
51 )
52 @Entity
53 public class Flight implements java.io.Serializable JavaDoc
54 {
55    Long JavaDoc id;
56    String JavaDoc name;
57    long duration;
58    long durationInSec;
59    Integer JavaDoc version;
60    Company company;
61    Set JavaDoc<Customer> customers;
62
63    @Id
64    @GeneratedValue(strategy=GenerationType.TABLE, generator = "default-generator")
65    public Long JavaDoc getId()
66    {
67       return id;
68    }
69
70    public void setId(Long JavaDoc long1)
71    {
72       id = long1;
73    }
74
75    @Column(updatable = false, name = "flight_name", nullable = false, length = 50)
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    @Basic(fetch = FetchType.LAZY)
87    public long getDuration()
88    {
89       return duration;
90    }
91
92    public void setDuration(long l)
93    {
94       duration = l;
95       //durationInSec = duration / 1000;
96
}
97
98    @Transient
99    public long getDurationInSec()
100    {
101       return durationInSec;
102    }
103
104    public void setDurationInSec(long l)
105    {
106       durationInSec = l;
107    }
108
109    @Version
110    @Column(name = "OPTLOCK")
111    public Integer JavaDoc getVersion()
112    {
113       return version;
114    }
115
116    public void setVersion(Integer JavaDoc i)
117    {
118       version = i;
119    }
120
121    //@ManyToOne(cascade = {CascadeType.PERSIST, CascadeType.MERGE})
122
@ManyToOne(cascade = {CascadeType.ALL})
123            @JoinColumn(name = "COMP_ID")
124    public Company getCompany()
125    {
126       return company;
127    }
128
129    public void setCompany(Company company)
130    {
131       this.company = company;
132    }
133
134    @ManyToMany(cascade = {CascadeType.PERSIST, CascadeType.MERGE}, fetch = FetchType.EAGER)
135    public Set JavaDoc<Customer> getCustomers()
136    {
137       return customers;
138    }
139
140    public void setCustomers(Set JavaDoc<Customer> customers)
141    {
142       this.customers = customers;
143    }
144 }
145
Popular Tags