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

com.sun.net.httpserver.HttpHandler Maven / Gradle / Ivy

The newest version!
/*
 * @(#)HttpHandler.java	1.4 07/01/02
 *
 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */

package com.sun.net.httpserver;

import java.io.IOException;

/**
 * A handler which is invoked to process HTTP exchanges. Each
 * HTTP exchange is handled by one of these handlers.
 * @since 1.6
 */
public interface HttpHandler {
    /**
     * Handle the given request and generate an appropriate response.
     * See {@link HttpExchange} for a description of the steps
     * involved in handling an exchange.
     * @param exchange the exchange containing the request from the 
     *      client and used to send the response
     * @throws NullPointerException if exchange is null
     */
    public abstract void handle (HttpExchange exchange) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy