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

net.anotheria.anosite.wizard.handler.response.WizardResponseChangeStep Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package net.anotheria.anosite.wizard.handler.response;

import net.anotheria.anosite.shared.InternalResponseCode;

/**
 * WizardResponseChangeStep - response which means that step should be changed.
 *
 * @author h3ll
 */
public class WizardResponseChangeStep extends WizardHandlerResponse {
	/**
	 * Basic serial version UID.
	 */
	private static final long serialVersionUID = 4649126014349238387L;

	/**
	 * WizardResponseChangeStep INSTANCE.
	 */
	public static final WizardResponseChangeStep INSTANCE = new WizardResponseChangeStep();


	@Override
	public InternalResponseCode getResponseCode() {
		return InternalResponseCode.CONTINUE_AND_REDIRECT;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy