Question: public class Clerk { private String userID; private String password; public Clerk(String userID, String password) { super(); this.userID = userID; this.password = password; } public
public class Clerk { private String userID; private String password; public Clerk(String userID, String password) { super(); this.userID = userID; this.password = password; } public String getUserID() { return userID; } public void setUserID(String userID) { this.userID = userID; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } }
Qs: Hello, I want to know how do I create a login interface based the Class I have created with Java?
Thanks for your help :)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
