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

org.ocap.hn.service.HttpRequestResolutionHandler Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package org.ocap.hn.service;

import java.net.InetAddress;
import java.net.URL;
import org.ocap.hn.NetworkInterface;

/**
 * This interface provides a handler that can be registered with an
 * implementation to provide a mapping service between an incoming HTTP GET or HEAD
 * request from a client and a content binary served by
 * the OC-DMS. 
 * 

* If a HttpRequestResolutionHandler is registered then the * implementation SHALL invoke the handler and use mapping provided by the * handler. If the handler is not registered or fails to provide a mapping, * the implementation attempts to map the request URI itself. */ public interface HttpRequestResolutionHandler { /** * Resolves the incoming HTTP request to a URL * that identifies a content binary * * @param inetAddress IP address the transaction was sent from. * @param url The URL requested by the transaction. * @param request The HTTP message request; * i.e., the request line and subsequent message headers. * @param networkInterface The NetworkInterface the request * came on. * * @return URL of the content binary if a match is found, * null otherwise. * */ public URL resolveHttpRequest(InetAddress inetAddress, URL url, String[] request, NetworkInterface networkInterface); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy