]> git.mxchange.org Git - jcontacts-business-core.git/blob - src/org/mxchange/jcontactsbusiness/CompanyContact.java
opps, wrong entity linked
[jcontacts-business-core.git] / src / org / mxchange / jcontactsbusiness / CompanyContact.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;
18
19 import java.util.List;
20 import javax.persistence.CascadeType;
21 import javax.persistence.Column;
22 import javax.persistence.Entity;
23 import javax.persistence.GeneratedValue;
24 import javax.persistence.GenerationType;
25 import javax.persistence.Id;
26 import javax.persistence.JoinColumn;
27 import javax.persistence.OneToMany;
28 import javax.persistence.OneToOne;
29 import javax.persistence.Table;
30 import org.mxchange.jcontactsbusiness.basicdata.BusinessBasicData;
31 import org.mxchange.jcontactsbusiness.basicdata.CompanyBasicData;
32 import org.mxchange.jcontactsbusiness.branch.BranchOffice;
33 import org.mxchange.jcontactsbusiness.branch.CompanyBranchOffice;
34 import org.mxchange.jcontactsbusiness.employee.CompanyEmployee;
35 import org.mxchange.jcontactsbusiness.employee.Employee;
36 import org.mxchange.jcontactsbusiness.headquarters.CompanyHeadQuartersData;
37 import org.mxchange.jcontactsbusiness.headquarters.HeadQuartersData;
38
39 /**
40  * A POJO for business contacts
41  * <p>
42  * @author Roland Haeder
43  */
44 @Entity (name = "company_contacts")
45 @Table (name = "company_contacts")
46 public class CompanyContact implements BusinessContact, Comparable<BusinessContact> {
47
48         /**
49          * Serial number
50          */
51         private static final long serialVersionUID = 478_378_178_748_691L;
52
53         /**
54          * Reference to basic data
55          */
56         @JoinColumn (name = "company_basic_data_id", nullable = false, updatable = false)
57         @OneToOne (targetEntity = CompanyBasicData.class, cascade = CascadeType.ALL, optional = false)
58         private BusinessBasicData basicBusinessData;
59
60         /**
61          * Reference to employee branches
62          */
63         @JoinColumn (name = "company_branches_id", nullable = false, updatable = false)
64         @OneToMany (targetEntity = CompanyBranchOffice.class, cascade = CascadeType.ALL)
65         private List<BranchOffice> branches;
66
67         /**
68          * Reference to contact person
69          */
70         @JoinColumn (name = "company_contact_id")
71         @OneToOne (targetEntity = CompanyEmployee.class, cascade = CascadeType.ALL)
72         private Employee companyContact;
73
74         /**
75          * Id number
76          */
77         @Id
78         @Column (name = "company_id", length = 20, nullable = false, updatable = false)
79         @GeneratedValue (strategy = GenerationType.IDENTITY)
80         private Long companyContactId;
81
82         /**
83          * Reference to CEO "employee"
84          */
85         @JoinColumn (name = "company_founder_id")
86         @OneToOne (targetEntity = CompanyEmployee.class, cascade = CascadeType.ALL)
87         private Employee companyFounder;
88
89         /**
90          * Reference to employee list
91          */
92         @JoinColumn (name = "company_employees_id", nullable = false, updatable = false)
93         @OneToMany (targetEntity = CompanyEmployee.class, cascade = CascadeType.ALL)
94         private List<Employee> employees;
95
96         /**
97          * Reference to headquarters data
98          */
99         @JoinColumn (name = "company_headquarters_data_id", nullable = false, updatable = false)
100         @OneToOne (targetEntity = CompanyHeadQuartersData.class, cascade = CascadeType.ALL, optional = false)
101         private HeadQuartersData headQuartersData;
102
103         @Override
104         public int compareTo (final BusinessContact businessContact) {
105                 throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
106         }
107
108         @Override
109         public BusinessBasicData getBasicBusinessData () {
110                 return this.basicBusinessData;
111         }
112
113         @Override
114         public void setBasicBusinessData (final BusinessBasicData basicBusinessData) {
115                 this.basicBusinessData = basicBusinessData;
116         }
117
118         @Override
119         public List<BranchOffice> getBranches () {
120                 return this.branches;
121         }
122
123         @Override
124         public void setBranches (final List<BranchOffice> branches) {
125                 this.branches = branches;
126         }
127
128         @Override
129         public Employee getCompanyContact () {
130                 return this.companyContact;
131         }
132
133         @Override
134         public void setCompanyContact (final Employee companyContact) {
135                 this.companyContact = companyContact;
136         }
137
138         @Override
139         public Long getCompanyContactId () {
140                 return this.companyContactId;
141         }
142
143         @Override
144         public void setCompanyContactId (final Long companyContactId) {
145                 this.companyContactId = companyContactId;
146         }
147
148         @Override
149         public Employee getCompanyFounder () {
150                 return this.companyFounder;
151         }
152
153         @Override
154         public void setCompanyFounder (final Employee companyFounder) {
155                 this.companyFounder = companyFounder;
156         }
157
158         @Override
159         public List<Employee> getEmployees () {
160                 return this.employees;
161         }
162
163         @Override
164         public void setEmployees (final List<Employee> employees) {
165                 this.employees = employees;
166         }
167
168         @Override
169         public HeadQuartersData getHeadQuartersData () {
170                 return this.headQuartersData;
171         }
172
173         @Override
174         public void setHeadQuartersData (final HeadQuartersData headQuartersData) {
175                 this.headQuartersData = headQuartersData;
176         }
177 }