Guest User

Untitled

a guest
Dec 2nd, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package checkbooktool;
  6.  
  7. /**
  8. *
  9. * @author Nick
  10. */
  11. public class Login {
  12.  
  13. private String userName;
  14. private String userPass;
  15.  
  16. public Login(){
  17. System.out.println("Error : Please enter your username and password");
  18. }
  19.  
  20. public Login(String name, String pass){
  21. userName = name;
  22. userPass = pass;
  23. }
  24.  
  25. public void validifyUser(){
  26.  
  27. }
  28.  
  29. }
Add Comment
Please, Sign In to add comment