package domain; public class Account { private String username=""; private String password=""; private Owner owner; public Account (String usr, String pass, Owner ow){ this.username = usr; this.password= pass; this.owner= ow; } public String getUsername() { return username; } public String getPassword() { return password; } public Owner getOwner() { return owner; } }