]> git.mxchange.org Git - jcontacts-core.git/commitdiff
sorted members
authorRoland Haeder <roland@mxchange.org>
Mon, 15 Feb 2016 15:11:46 +0000 (16:11 +0100)
committerRoland Haeder <roland@mxchange.org>
Mon, 15 Feb 2016 15:11:46 +0000 (16:11 +0100)
src/org/mxchange/jcontacts/contact/UserContact.java

index c9fa3ecab63e508de9d417ca7f7792e4386454ef..2f4aee856197c60f04cda4528173642fd45563f6 100644 (file)
@@ -102,14 +102,6 @@ public class UserContact implements Contact, Comparable<Contact> {
        @Column (name = "contact_comment")
        private String contactComment;
 
-       /**
-        * Id number
-        */
-       @Id
-       @GeneratedValue (strategy = GenerationType.IDENTITY)
-       @Column (name = "contact_id", length = 20, nullable = false, updatable = false)
-       private Long contactId;
-
        /**
         * Country code
         */
@@ -166,6 +158,14 @@ public class UserContact implements Contact, Comparable<Contact> {
        @Column (name = "contact_house_number", length = 5, nullable = false)
        private Short contactHouseNumber;
 
+       /**
+        * Id number
+        */
+       @Id
+       @GeneratedValue (strategy = GenerationType.IDENTITY)
+       @Column (name = "contact_id", length = 20, nullable = false, updatable = false)
+       private Long contactId;
+
        /**
         * Flag whether this contact is user's own data
         */
@@ -334,16 +334,6 @@ public class UserContact implements Contact, Comparable<Contact> {
                this.contactComment = contactComment;
        }
 
-       @Override
-       public Long getContactId () {
-               return this.contactId;
-       }
-
-       @Override
-       public void setContactId (final Long contactId) {
-               this.contactId = contactId;
-       }
-
        @Override
        public Country getContactCountry () {
                return this.contactCountry;
@@ -425,6 +415,15 @@ public class UserContact implements Contact, Comparable<Contact> {
                this.contactHouseNumber = contactHouseNumber;
        }
 
+       @Override
+       public Long getContactId () {
+               return this.contactId;
+       }
+       @Override
+       public void setContactId (final Long contactId) {
+               this.contactId = contactId;
+       }
+
        @Override
        public void setContactOwnContact (final Boolean contactOwnContact) {
                this.contactOwnContact = contactOwnContact;