Student Java

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

public class Student {

private int userId;


private String username;
private String password;
private int roleId;
private int profileId;

public Student(int userId, String username, String password, int roleId, int
profileId) {
this.userId = userId;
this.username = username;
this.password = password;
this.roleId = roleId;
this.profileId = profileId;
}

public int getUserId() {


return userId;
}

public void setUserId(int userId) {


this.userId = userId;
}

public String getUsername() {


return username;
}

public void setUsername(String username) {


this.username = username;
}

public String getPassword() {


return password;
}

public void setPassword(String password) {


this.password = password;
}

public int getRoleId() {


return roleId;
}

public void setRoleId(int roleId) {


this.roleId = roleId;
}

public int getProfileId() {


return profileId;
}

public void setProfileId(int profileId) {


this.profileId = profileId;
}
}

You might also like