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

com.barchart.http.request.RequestHandlerBase Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
/**
 * Copyright (C) 2011-2013 Barchart, Inc. 
 *
 * All rights reserved. Licensed under the OSI BSD License.
 *
 * http://www.opensource.org/licenses/bsd-license.php
 */
package com.barchart.http.request;


/**
 * Base request handler that provides default implementations of some less-used
 * methods.
 */
public abstract class RequestHandlerBase implements RequestHandler {

	@Override
	public void onAbort(final ServerRequest request,
			final ServerResponse response) {
	}

	@Override
	public void onException(final ServerRequest request,
			final ServerResponse response, final Throwable exception) {
	}

	@Override
	public void onComplete(final ServerRequest request,
			final ServerResponse response) {
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy