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

net.anotheria.anosite.wizard.handler.response.WizardResponseContinue 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;

/**
 * Wizard internal response code - which signalize that wizard should continue rendering.
 *
 * @author h3ll
 */
public class WizardResponseContinue extends WizardHandlerResponse {

	/**
	 * Basic serial version UID.
	 */
	private static final long serialVersionUID = 6175736858472476916L;
	/**
	 * WizardResponseContinue INSTANCE constant.
	 */
	public static final WizardResponseContinue INSTANCE = new WizardResponseContinue();


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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy