Back to project page FxExplorer.
The source code is released under:
Apache License
If you think the Android project FxExplorer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.gescobar.httpserver; //w ww .j a v a 2 s.co m import java.util.Map; /** * Holds the information of the request. * * @author German Escobar */ public interface Request { String getMethod(); String getPath(); String getHost(); Map<String,String> getHeaders(); String getHeader(String name); }