]> git.mxchange.org Git - jcontacts-business-core.git/blob - src/org/mxchange/jcontactsbusiness/headquarters/CompanyHeadQuartersData.java
project initialization
[jcontacts-business-core.git] / src / org / mxchange / jcontactsbusiness / headquarters / CompanyHeadQuartersData.java
1 /*
2  * Copyright (C) 2015 KLC
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.headquarters;
18
19 import javax.persistence.Column;
20 import javax.persistence.Entity;
21 import javax.persistence.GeneratedValue;
22 import javax.persistence.GenerationType;
23 import javax.persistence.Id;
24 import javax.persistence.Table;
25
26 /**
27  * A POJO for company headquarts data
28  * <p>
29  * @author Roland Haeder
30  */
31 @Entity (name = "company_headquarters")
32 @Table (name = "company_headquarters")
33 public class CompanyHeadQuartersData implements HeadQuartersData, Comparable<HeadQuartersData> {
34
35         /**
36          * Serial number
37          */
38         private static final long serialVersionUID = 385_752_948_781_761L;
39
40         /**
41          * Id number
42          */
43         @Id
44         @Column (name = "headquarters_id", length = 20, nullable = false, unique = true, updatable = false)
45         @GeneratedValue (strategy = GenerationType.IDENTITY)
46         private Long headquartersId;
47
48         @Override
49         public int compareTo (final HeadQuartersData headQuartersData) {
50                 throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
51         }
52 }