View Javadoc

1   package com.bradmcevoy.http;
2   
3   import com.bradmcevoy.http.http11.CustomPostHandler;
4   import java.util.List;
5   import java.util.Set;
6   
7   /**
8    *
9    * @author brad
10   */
11  public interface HttpExtension {
12  
13      /**
14       *
15       * @return - all method handlers that this extension supports.
16       */
17      Set<Handler> getHandlers();
18  
19      List<CustomPostHandler> getCustomPostHandlers();
20  
21  //    public void setResponseHeaders( Request request, Response response, Resource resource, Status status );
22  }