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

net.anotheria.anosite.handler.ResponseContinue 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;
/**
 * Response continue. Signalizes the outer code to continue processing.
 * @author lrosenberg
 */
public class ResponseContinue extends BoxHandlerResponse{
	/**
	 * A stateless instance which can be used as return value to reduce memory pollution. 
	 */
	public static final BoxHandlerResponse INSTANCE = new ResponseContinue();
	
	public InternalResponseCode getResponseCode(){
		return InternalResponseCode.CONTINUE;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy