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

cn.banny.rp.auth.Auth Maven / Gradle / Ivy

The newest version!
/**
 * 
 */
package cn.banny.rp.auth;

/**
 * @author zhkl0228
 *
 */
public class Auth {
	
	private final String username;
	private final String password;
	private final AuthResult result;
	
	public Auth(String username, String password, AuthResult result) {
		super();
		this.username = username;
		this.password = password;
		this.result = result;
	}

	public String getUsername() {
		return username;
	}

	public String getPassword() {
		return password;
	}

	public AuthResult getResult() {
		return result;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy