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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!