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

com.github.to2mbn.jmccc.auth.YggdrasilAuthenticator Maven / Gradle / Ivy

package com.github.to2mbn.jmccc.auth;

/**
 * @deprecated this class will be removed in future versions, please use YggdrasilPasswordAuthenticator
 */
@Deprecated
public class YggdrasilAuthenticator extends YggdrasilPasswordAuthenticator {

	/**
	 * Creates a YggdrasilPasswordAuthenticator.
	 * 
	 * @param email the email
	 * @param password the password
	 * @param characterSelector call when selecting character, null if use the default character
	 * @throws NullPointerException if email==null||password==null
	 */
	public YggdrasilAuthenticator(String email, String password, YggdrasilCharacterSelector characterSelector) {
		super(email, password, characterSelector);
	}

	/**
	 * Creates a YggdrasilPasswordAuthenticator.
	 * 
	 * @param email the email
	 * @param password the password
	 * @throws NullPointerException if email==null||password==null
	 */
	public YggdrasilAuthenticator(String email, String password) {
		super(email, password);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy