Back to project page android_opengles.
The source code is released under:
MIT License
If you think the Android project android_opengles 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 fi.iki.elonen; /*from ww w .j a va 2 s . com*/ import java.util.Map; import static fi.iki.elonen.NanoHTTPD.Response; /** * @author Paul S. Hawke (paul.hawke@gmail.com) * On: 9/15/13 at 2:52 PM */ public class InternalRewrite extends Response { private final String uri; private final Map<String, String> headers; public InternalRewrite(Map<String, String> headers, String uri) { super(null); this.headers = headers; this.uri = uri; } public String getUri() { return uri; } public Map<String, String> getHeaders() { return headers; } }