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

cz.mmsparams.api.http.auth.JwtRequest Maven / Gradle / Ivy

package cz.mmsparams.api.http.auth;

import java.io.Serializable;

public class JwtRequest implements Serializable
{
    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;
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy