]> git.mxchange.org Git - juser-core.git/commitdiff
updated jars + renamed property
authorRoland Haeder <roland@mxchange.org>
Tue, 6 Oct 2015 07:33:54 +0000 (09:33 +0200)
committerRoland Haeder <roland@mxchange.org>
Tue, 6 Oct 2015 07:33:54 +0000 (09:33 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/org/mxchange/jusercore/model/user/LoginUser.java

index b460de3982846845fa0c069961b513f645fd6910..c592e6e0c0ba7b651664fad68913f61b0ab258a3 100644 (file)
@@ -53,7 +53,7 @@ public class LoginUser implements User {
         */
        @JoinColumn (name = "contact_id", nullable = false, updatable = false, unique = true)
        @OneToOne (targetEntity = UserContact.class, optional = false)
-       private Contact contact;
+       private Contact userContact;
 
        /**
         * Account status
@@ -113,7 +113,7 @@ public class LoginUser implements User {
        @Override
        public void copyAll (final User user) {
                // Copy also contact data
-               this.getContact().copyAll(user.getContact());
+               this.getUserContact().copyAll(user.getUserContact());
 
                // Copy other data
                this.setUserConfirmKey(user.getUserConfirmKey());
@@ -125,13 +125,13 @@ public class LoginUser implements User {
        }
 
        @Override
-       public Contact getContact () {
-               return this.contact;
+       public Contact getUserContact () {
+               return this.userContact;
        }
 
        @Override
-       public void setContact (final Contact contact) {
-               this.contact = contact;
+       public void setUserContact (final Contact userContact) {
+               this.userContact = userContact;
        }
 
        @Override