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

net.anotheria.anosite.handler.BoxHandlerResponse Maven / Gradle / Ivy

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

import net.anotheria.anosite.shared.InternalResponseCode;

/**
 * Basic class for a response generated by a boxhandler submit or process method.
 * @author lrosenberg
 *
 */
public abstract class BoxHandlerResponse {
	/**
	 * Returns the response code of the response. Classes react on the response accordingly to the response code.
	 * @return the response code.
	 */
	public abstract InternalResponseCode getResponseCode();
	
	@Override public String toString(){
		return getResponseCode().toString();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy