mirror of
https://github.com/dyiop/astute.git
synced 2025-04-05 21:10:16 -04:00
Delete User.java
This commit is contained in:
parent
be674413bc
commit
ad40d4e536
|
@ -1,37 +0,0 @@
|
|||
package com.astute.model;
|
||||
|
||||
public class User {
|
||||
int userId;
|
||||
String username;
|
||||
String password;
|
||||
|
||||
public User(int userId, String username, String password) {
|
||||
this.userId = userId;
|
||||
this.username = username;
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
public int getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(int userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public String getUsername() {
|
||||
return username;
|
||||
}
|
||||
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
|
||||
public String getPassword() {
|
||||
return password;
|
||||
}
|
||||
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user