Advertisement
Guest User

Untitled

a guest
Nov 12th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.45 KB | None | 0 0
  1. public class User {
  2.     int UserId;
  3.     String username;
  4.     String password;
  5.     boolean isAdmin;
  6.  
  7.     public User(String username, String password, int UserId, boolean isAdmin) {
  8.         this.username = username;
  9.         this.password = password;
  10.         this.UserId= UserId;
  11.         this.isAdmin = isAdmin;
  12.     }
  13.  
  14.     public int getId() {
  15.         return this.UserId;
  16.     }
  17.     public boolean isAdmin() {
  18.         return isAdmin;
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement