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

prompto.config.auth.method.FormAuthenticationMethodConfiguration Maven / Gradle / Ivy

There is a newer version: 0.1.57
Show newest version
package prompto.config.auth.method;

import prompto.config.IConfigurationReader;

public class FormAuthenticationMethodConfiguration extends AuthenticationMethodConfiguration implements IFormAuthenticationMethodConfiguration {

	public FormAuthenticationMethodConfiguration(IConfigurationReader reader) {
		super(reader);
	}

	@Override
	public String getLoginPage() {
		return reader.getString("loginPage");
	}

	@Override
	public String getErrorPage() {
		return reader.getString("errorPage");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy