Owner deletion added
[RRRRHHHH_Code] / ruralHouses / src / domain / Account.java
index 0a724c3..ee67f15 100644 (file)
@@ -28,6 +28,13 @@ public class Account implements Serializable {
                this.password = null;
                this.owner = null;
                
+       }
+       public Account(Owner own){
+               this.username = null;
+               this.salt =null;
+               this.password = null;
+               this.owner = own;
+               
        }
        public Account(String usr, String pass, boolean isAdmin) {
                this.username = SecurityManager.getInstance().calculateHash(usr);