]> git.mxchange.org Git - juser-activity-core.git/commitdiff
sorted members
authorRoland Haeder <roland@mxchange.org>
Tue, 6 Oct 2015 06:17:35 +0000 (08:17 +0200)
committerRoland Haeder <roland@mxchange.org>
Tue, 6 Oct 2015 06:17:35 +0000 (08:17 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

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

index 12580f1814ecebf2e8de96f487c0ab2d6b7188f7..b460de3982846845fa0c069961b513f645fd6910 100644 (file)
@@ -55,6 +55,14 @@ public class LoginUser implements User {
        @OneToOne (targetEntity = UserContact.class, optional = false)
        private Contact contact;
 
+       /**
+        * Account status
+        */
+       @Basic (optional = false)
+       @Column (name = "user_account_status", nullable = false)
+       @Enumerated (value = EnumType.STRING)
+       private UserAccountStatus userAccountStatus;
+
        /**
         * Confirmation key
         */
@@ -96,14 +104,6 @@ public class LoginUser implements User {
        @Column (name = "user_password_hash")
        private String userPasswordHash;
 
-       /**
-        * Account status
-        */
-       @Basic (optional = false)
-       @Column (name = "user_account_status", nullable = false)
-       @Enumerated (EnumType.STRING)
-       private UserAccountStatus userAccountStatus;
-
        /**
         * Default constructor
         */
@@ -134,6 +134,16 @@ public class LoginUser implements User {
                this.contact = contact;
        }
 
+       @Override
+       public UserAccountStatus getUserAccountStatus () {
+               return this.userAccountStatus;
+       }
+
+       @Override
+       public void setUserAccountStatus (final UserAccountStatus userAccountStatus) {
+               this.userAccountStatus = userAccountStatus;
+       }
+
        @Override
        public String getUserConfirmKey () {
                return this.userConfirmKey;
@@ -193,14 +203,4 @@ public class LoginUser implements User {
        public void setUserPasswordHash (final String userPasswordHash) {
                this.userPasswordHash = userPasswordHash;
        }
-
-       @Override
-       public UserAccountStatus getUserAccountStatus () {
-               return this.userAccountStatus;
-       }
-
-       @Override
-       public void setUserAccountStatus (final UserAccountStatus userAccountStatus) {
-               this.userAccountStatus = userAccountStatus;
-       }
 }
index b397f11d65bc94664a0b53d16c12dfda90544e07..01941bc78beebdbf9db8ab0999112a28b818801c 100644 (file)
@@ -49,6 +49,20 @@ public interface User extends Serializable {
         */
        public void setContact (final Contact contact);
 
+       /**
+        * Getter for account status
+        * <p>
+        * @return Account status
+        */
+       public UserAccountStatus getUserAccountStatus ();
+
+       /**
+        * Setter for account status
+        * <p>
+        * @param customerStatus Account status
+        */
+       public void setUserAccountStatus (final UserAccountStatus customerStatus);
+
        /**
         * Getter for confirmation key
         * <p>
@@ -132,18 +146,4 @@ public interface User extends Serializable {
         * @param customerPasswordHash Password hash
         */
        public void setUserPasswordHash (final String customerPasswordHash);
-
-       /**
-        * Getter for account status
-        * <p>
-        * @return Account status
-        */
-       public UserAccountStatus getUserAccountStatus ();
-
-       /**
-        * Setter for account status
-        * <p>
-        * @param customerStatus Account status
-        */
-       public void setUserAccountStatus (final UserAccountStatus customerStatus);
 }