This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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