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

org.frameworkset.web.request.async.CallableProcessingInterceptorAdapter Maven / Gradle / Ivy

Go to download

bboss is a j2ee framework include aop/ioc,mvc,persistent,taglib,rpc,event ,bean-xml serializable and so on.http://www.bbossgroups.com

There is a newer version: 6.2.7
Show newest version
package org.frameworkset.web.request.async;

import java.util.concurrent.Callable;

import org.frameworkset.web.servlet.mvc.NativeWebRequest;

/**
 * Abstract adapter class for the {@link CallableProcessingInterceptor} interface,
 * for simplified implementation of individual methods.
 *
 * @author Rossen Stoyanchev
 * @author Rob Winch
 * @since 3.2
 */
public abstract class CallableProcessingInterceptorAdapter implements CallableProcessingInterceptor {

	/**
	 * This implementation is empty.
	 */
	@Override
	public  void beforeConcurrentHandling(NativeWebRequest request, Callable task) throws Exception {
	}

	/**
	 * This implementation is empty.
	 */
	@Override
	public  void preProcess(NativeWebRequest request, Callable task) throws Exception {
	}

	/**
	 * This implementation is empty.
	 */
	@Override
	public  void postProcess(NativeWebRequest request, Callable task, Object concurrentResult) throws Exception {
	}

	/**
	 * This implementation always returns
	 * {@link CallableProcessingInterceptor#RESULT_NONE RESULT_NONE}.
	 */
	@Override
	public  Object handleTimeout(NativeWebRequest request, Callable task) throws Exception {
		return RESULT_NONE;
	}

	/**
	 * This implementation is empty.
	 */
	@Override
	public  void afterCompletion(NativeWebRequest request, Callable task) throws Exception {
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy