Started with the separated DB with the given code
[RRRRHHHH_Code] / ruralHousesDB / src / domain / Client.java
diff --git a/ruralHousesDB/src/domain/Client.java b/ruralHousesDB/src/domain/Client.java
new file mode 100644 (file)
index 0000000..a4c0baf
--- /dev/null
@@ -0,0 +1,46 @@
+package domain;
+
+import java.io.Serializable;
+
+public class Client  implements Serializable{
+
+       /**
+        * 
+        */
+       private static final long serialVersionUID = 1L;
+       private String name;
+       private String mailAccount;
+       private String telephone;
+
+       public Client(String name, String mailAccount, String telephone) {
+               super();
+               this.name = name;
+               this.mailAccount = mailAccount;
+               this.telephone = telephone;
+       }
+
+       public String getName() {
+               return name;
+       }
+
+       public void setName(String name) {
+               this.name = name;
+       }
+
+       public String getMailAccount() {
+               return mailAccount;
+       }
+
+       public void setMailAccount(String mailAccount) {
+               this.mailAccount = mailAccount;
+       }
+
+       public String getTelephone() {
+               return telephone;
+       }
+
+       public void setTelephone(String telephone) {
+               this.telephone = telephone;
+       }
+
+}