package com.crm.model; | |
import java.io.Serializable; | |
public class JwtRequest implements Serializable { | |
private static final long serialVersionUID = 5926468583005150707L; | |
private String username; | |
private String password; | |
public JwtRequest() | |
{ | |
} | |
public JwtRequest(String username, String password) { | |
this.setUsername(username); | |
this.setPassword(password); | |
} | |
public String getUsername() { | |
return this.username; | |
} | |
public void setUsername(String username) { | |
this.username = username; | |
} | |
public String getPassword() { | |
return this.password; | |
} | |
public void setPassword(String password) { | |
this.password = password; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment