]> git.mxchange.org Git - jphone-core.git/blob - src/org/mxchange/jphone/phonenumbers/landline/LandLineNumber.java
Renamed package smsprovider -> mobileprovider. They don't only provide SMS but also...
[jphone-core.git] / src / org / mxchange / jphone / phonenumbers / landline / LandLineNumber.java
1 /*
2  * Copyright (C) 2016 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.jphone.phonenumbers.landline;
18
19 import java.util.Calendar;
20 import java.util.Objects;
21 import javax.persistence.Basic;
22 import javax.persistence.CascadeType;
23 import javax.persistence.Column;
24 import javax.persistence.Entity;
25 import javax.persistence.GeneratedValue;
26 import javax.persistence.GenerationType;
27 import javax.persistence.Id;
28 import javax.persistence.JoinColumn;
29 import javax.persistence.OneToOne;
30 import javax.persistence.Table;
31 import javax.persistence.Temporal;
32 import javax.persistence.TemporalType;
33 import org.mxchange.jcountry.data.Country;
34 import org.mxchange.jcountry.data.CountryData;
35
36 /**
37  * A POJO for dialable phone numbers
38  * <p>
39  * @author Roland Haeder<roland@mxchange.org>
40  */
41 @Entity (name = "phone_numbers")
42 @Table (name = "phone_numbers")
43 public class LandLineNumber implements DialableLandLineNumber {
44
45         /**
46          * Serial number
47          */
48         private static final long serialVersionUID = 18_563_748_781_956L;
49
50         /**
51          * Area code (example: 2151 for Krefeld)
52          */
53         @Basic (optional = false)
54         @Column (name = "phone_area_code", length = 10, nullable = false)
55         private Integer phoneAreaCode;
56
57         /**
58          * Connection to table "country_data"
59          */
60         @JoinColumn (name = "phone_country_id", nullable = false, updatable = false)
61         @OneToOne (targetEntity = CountryData.class, cascade = CascadeType.REFRESH, optional = false)
62         private Country phoneCountry;
63
64         /**
65          * Timestamp when this entry has been created
66          */
67         @Basic (optional = false)
68         @Temporal (TemporalType.TIMESTAMP)
69         @Column (name = "phone_entry_created", nullable = false, updatable = false)
70         private Calendar phoneEntryCreated;
71
72         /**
73          * Id number
74          */
75         @Id
76         @GeneratedValue (strategy = GenerationType.IDENTITY)
77         @Column (name = "phone_id", length = 10, nullable = false, updatable = false)
78         private Long phoneId;
79
80         /**
81          * Phone number with out dial prefix
82          */
83         @Basic (optional = false)
84         @Column (name = "phone_number", nullable = false)
85         private Long phoneNumber;
86
87         /**
88          * Default constructor
89          */
90         public LandLineNumber () {
91         }
92
93         /**
94          * Constructor with country instance, area code and number
95          * <p>
96          * @param phoneCountry      Country instance
97          * @param phoneAreaCode     Phone area code
98          * @param phoneNumber       Phone number
99          */
100         public LandLineNumber (final Country phoneCountry, final Integer phoneAreaCode, final Long phoneNumber) {
101                 // Call default constructor
102                 this();
103
104                 // Set all values
105                 this.phoneCountry = phoneCountry;
106                 this.phoneAreaCode = phoneAreaCode;
107                 this.phoneNumber = phoneNumber;
108         }
109
110         @Override
111         public void copyAll (final DialableLandLineNumber sourceNumber) {
112                 // Copy all
113                 this.setPhoneAreaCode(sourceNumber.getPhoneAreaCode());
114                 this.setPhoneCountry(sourceNumber.getPhoneCountry());
115                 this.setPhoneEntryCreated(sourceNumber.getPhoneEntryCreated());
116                 this.setPhoneId(sourceNumber.getPhoneId());
117                 this.setPhoneNumber(sourceNumber.getPhoneNumber());
118         }
119
120         @Override
121         public boolean equals (final Object object) {
122                 if (null == object) {
123                         return false;
124                 } else if (this.getClass() != object.getClass()) {
125                         return false;
126                 }
127
128                 final DialableLandLineNumber other = (DialableLandLineNumber) object;
129
130                 if (!Objects.equals(this.getPhoneNumber(), other.getPhoneNumber())) {
131                         return false;
132                 } else if (!Objects.equals(this.getPhoneAreaCode(), other.getPhoneAreaCode())) {
133                         return false;
134                 } else if (!Objects.equals(this.getPhoneCountry(), other.getPhoneCountry())) {
135                         return false;
136                 }
137
138                 return true;
139         }
140
141         @Override
142         public int hashCode () {
143                 int hash = 7;
144                 hash = 47 * hash + Objects.hashCode(this.getPhoneNumber());
145                 hash = 47 * hash + Objects.hashCode(this.getPhoneAreaCode());
146                 hash = 47 * hash + Objects.hashCode(this.getPhoneCountry());
147                 return hash;
148         }
149
150         @Override
151         public Integer getPhoneAreaCode () {
152                 return this.phoneAreaCode;
153         }
154
155         @Override
156         public void setPhoneAreaCode (final Integer phoneAreaCode) {
157                 this.phoneAreaCode = phoneAreaCode;
158         }
159
160         @Override
161         public Country getPhoneCountry () {
162                 return this.phoneCountry;
163         }
164
165         @Override
166         public void setPhoneCountry (final Country phoneCountry) {
167                 this.phoneCountry = phoneCountry;
168         }
169
170         @Override
171         public Calendar getPhoneEntryCreated () {
172                 return this.phoneEntryCreated;
173         }
174
175         @Override
176         public void setPhoneEntryCreated (final Calendar phoneEntryCreated) {
177                 this.phoneEntryCreated = phoneEntryCreated;
178         }
179
180         @Override
181         public Long getPhoneId () {
182                 return this.phoneId;
183         }
184
185         @Override
186         public void setPhoneId (final Long phoneId) {
187                 this.phoneId = phoneId;
188         }
189
190         @Override
191         public Long getPhoneNumber () {
192                 return this.phoneNumber;
193         }
194
195         @Override
196         public void setPhoneNumber (final Long phoneNumber) {
197                 this.phoneNumber = phoneNumber;
198         }
199
200 }