package ciai.model; public class Professor{ private int id; private String username; private String name; private String department; private String role; private String photo; private String email; public Professor(int id, String username, String name, String department, String role, String photo, String email){ this.setId(id); this.setUsername(username); this.setName(name); this.setDepartment(department); this.setRole(role); this.setPhoto(photo); this.setEmail(email); } public int getId(){ return this.id; } public String getUsername(){ return this.username; } public String getName(){ return this.name; } public String getDepartment(){ return this.department; } public String getRole(){ return this.role; } public String getPhoto(){ return this.photo; } public String getEmail(){ return this.email; } public void setId(int i){ this.id = i; } public void setUsername(String u){ this.username = u; } public void setName(String n){ this.name = n; } public void setDepartment(String d){ this.department = d; } public void setRole(String r){ this.role = r; } public void setPhoto(String p){ this.photo = p; } public void setEmail(String e){ this.email = e; } }