]> git.mxchange.org Git - jcontacts-core.git/commitdiff
Continued a bit:
authorRoland Häder <roland@mxchange.org>
Tue, 16 Aug 2016 15:09:04 +0000 (17:09 +0200)
committerRoland Häder <roland@mxchange.org>
Tue, 16 Aug 2016 15:09:04 +0000 (17:09 +0200)
- renamed contact_phone_number_id -> contact_landline_number_id (and phone_id > landline_id)
- sorted members

src/org/mxchange/jcontacts/contact/UserContact.java

index 4286accc1bf8c502dd1d0da3211146a198374cb8..06109d7f6d9a484ad0793a9a3de5b28170724e38 100644 (file)
@@ -89,13 +89,6 @@ public class UserContact implements Contact {
        @Temporal (TemporalType.DATE)
        private Date contactBirthday;
 
-       /**
-        * Cellphone number
-        */
-       @JoinColumn (name = "contact_mobile_number_id", referencedColumnName = "mobile_id", unique = true)
-       @OneToOne (targetEntity = MobileNumber.class, cascade = CascadeType.ALL)
-       private DialableMobileNumber contactMobileNumber;
-
        /**
         * City
         */
@@ -181,6 +174,13 @@ public class UserContact implements Contact {
        @Column (name = "contact_id", nullable = false, updatable = false)
        private Long contactId;
 
+       /**
+        * Cellphone number
+        */
+       @JoinColumn (name = "contact_mobile_number_id", referencedColumnName = "mobile_id", unique = true)
+       @OneToOne (targetEntity = MobileNumber.class, cascade = CascadeType.ALL)
+       private DialableMobileNumber contactMobileNumber;
+
        /**
         * Flag whether this contact is user's own data
         */
@@ -191,7 +191,7 @@ public class UserContact implements Contact {
        /**
         * Phone number
         */
-       @JoinColumn (name = "contact_phone_number_id", referencedColumnName = "phone_id", unique = true)
+       @JoinColumn (name = "contact_landline_number_id", referencedColumnName = "landline_id", unique = true)
        @OneToOne (targetEntity = LandLineNumber.class, cascade = CascadeType.ALL)
        private DialableLandLineNumber contactPhoneNumber;
 
@@ -336,16 +336,6 @@ public class UserContact implements Contact {
                this.contactBirthday = contactBirthday;
        }
 
-       @Override
-       public DialableMobileNumber getContactMobileNumber () {
-               return this.contactMobileNumber;
-       }
-
-       @Override
-       public void setContactMobileNumber (final DialableMobileNumber contactMobileNumber) {
-               this.contactMobileNumber = contactMobileNumber;
-       }
-
        @Override
        public String getContactCity () {
                return this.contactCity;
@@ -479,6 +469,16 @@ public class UserContact implements Contact {
                this.contactPhoneNumber = contactPhoneNumber;
        }
 
+       @Override
+       public DialableMobileNumber getContactMobileNumber () {
+               return this.contactMobileNumber;
+       }
+
+       @Override
+       public void setContactMobileNumber (final DialableMobileNumber contactMobileNumber) {
+               this.contactMobileNumber = contactMobileNumber;
+       }
+
        @Override
        public void setContactOwnContact (final Boolean contactOwnContact) {
                this.contactOwnContact = contactOwnContact;