All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.digiassist.auth.dto.JWTRequest Maven / Gradle / Ivy

package com.digiassist.auth.dto;

public class JWTRequest {
	private String username;
	private String password;

	// need default constructor for JSON Parsing
	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;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy