Skip to content

Instantly share code, notes, and snippets.

@aarshtalati
Created April 7, 2018 02:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aarshtalati/9fd1cebd7d1440ac24ba138d0edaa61a to your computer and use it in GitHub Desktop.
Save aarshtalati/9fd1cebd7d1440ac24ba138d0edaa61a to your computer and use it in GitHub Desktop.
package edu.gatech.epidemics.viewmodel;
/**
* @author atalati
*/
public class Login {
private String username;
private String password;
public Login() {
}
public Login(String username, String password) {
this.username = username;
this.password = password;
}
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;
}
@Override
public String toString() {
return "Login{" +
"username='" + username + '\'' +
", password='" + password + '\'' +
'}';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment