]> git.mxchange.org Git - jcontacts-business-core.git/blob - src/org/mxchange/jcontactsbusiness/department/CompanyDepartment.java
opps, wrong entity linked
[jcontacts-business-core.git] / src / org / mxchange / jcontactsbusiness / department / CompanyDepartment.java
1 /*
2  * Copyright (C) 2015 Roland Haeder
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.jcontactsbusiness.department;
18
19 import javax.persistence.Basic;
20 import javax.persistence.CascadeType;
21 import javax.persistence.Column;
22 import javax.persistence.Entity;
23 import javax.persistence.FetchType;
24 import javax.persistence.GeneratedValue;
25 import javax.persistence.GenerationType;
26 import javax.persistence.Id;
27 import javax.persistence.JoinColumn;
28 import javax.persistence.ManyToOne;
29 import javax.persistence.OneToOne;
30 import javax.persistence.Table;
31 import org.mxchange.jcontactsbusiness.BusinessContact;
32 import org.mxchange.jcontactsbusiness.CompanyContact;
33 import org.mxchange.jcontactsbusiness.employee.CompanyEmployee;
34 import org.mxchange.jcontactsbusiness.employee.Employee;
35
36 /**
37  * A POJO for company departments
38  * <p>
39  * @author Roland Haeder
40  */
41 @Entity (name = "departments")
42 @Table (name = "departments")
43 public class CompanyDepartment implements Department, Comparable<Department> {
44
45         /**
46          * Serial number
47          */
48         private static final long serialVersionUID = 94_835_918_958_717_660L;
49
50         /**
51          * Connection to company contact
52          */
53         @JoinColumn (name = "department_company_id", nullable = false, updatable = false)
54         @ManyToOne (targetEntity = CompanyContact.class, cascade = CascadeType.ALL, optional = false, fetch = FetchType.EAGER)
55         private BusinessContact departmentCompany;
56
57         /**
58          * Id number
59          */
60         @Id
61         @GeneratedValue (strategy = GenerationType.IDENTITY)
62         @Column (name = "department_id", length = 20, nullable = false, updatable = false)
63         private Long departmentId;
64
65         /**
66          * Department lead employee
67          */
68         @JoinColumn (name = "department_lead_id", nullable = false)
69         @OneToOne (targetEntity = CompanyEmployee.class, cascade = CascadeType.ALL, fetch = FetchType.EAGER)
70         private Employee departmentLead;
71
72         /**
73          * Department name
74          */
75         @Basic (optional = false)
76         @Column (name = "department_name", length = 100, nullable = false)
77         private String departmentName;
78
79         @Override
80         public int compareTo (final Department department) {
81                 throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
82         }
83
84         @Override
85         public BusinessContact getDepartmentCompany () {
86                 return this.departmentCompany;
87         }
88
89         @Override
90         public void setDepartmentCompany (final BusinessContact departmentCompany) {
91                 this.departmentCompany = departmentCompany;
92         }
93
94         @Override
95         public Long getDepartmentId () {
96                 return this.departmentId;
97         }
98
99         @Override
100         public void setDepartmentId (final Long departmentId) {
101                 this.departmentId = departmentId;
102         }
103
104         @Override
105         public Employee getDepartmentLead () {
106                 return this.departmentLead;
107         }
108
109         @Override
110         public void setDepartmentLead (final Employee departmentLead) {
111                 this.departmentLead = departmentLead;
112         }
113
114         @Override
115         public String getDepartmentName () {
116                 return this.departmentName;
117         }
118
119         @Override
120         public void setDepartmentName (final String departmentName) {
121                 this.departmentName = departmentName;
122         }
123 }