License Headers in Project Properties.
/*
- To change this license header, choose License Headers in Project Properties.
- To change this template file, choose Tools | Templates
- and open the template in the editor.
*/
package authenticationsystem;
/**
*
- @author jack
*/
public class Credentials {
String userName;
String hashedPassword;
String role; public Credentials(String userName, String hashedPassword, String role) {
this.userName = userName;
this.hashedPassword = hashedPassword;
this.role = role;
} public String getUserName() {
return userName;
} public String getHashedPassword() {
return hashedPassword;
} public String getRole() {
return role;
}
}
"Looking for a Similar Assignment? Order now and Get 10% Discount! Use Code "Newclient"
