Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ./lib/red5hx/org/apache/http/protocol/BasicHttpProcessor.hx:17: lines 17-65 :
- Field process has different type than in org.apache.http.HttpRequestInterceptor
- ./lib/red5hx/org/apache/http/protocol/BasicHttpProcessor.hx:17: lines 17-65 :
- org.apache.http.HttpResponse should be org.apache.http.HttpRequest
- //--------------------------------------------------------------------------
- package org.apache.http;
- import org.apache.http.HttpRequest;
- import org.apache.http.protocol.HttpContext;
- @:native("org.apache.http.HttpRequestInterceptor")
- extern interface HttpRequestInterceptor
- {
- function process(arg0:HttpRequest, arg1:HttpContext):Void;
- }
- //--------------------------------------------------------------------------
- package org.apache.http.protocol;
- import java.lang.Class;
- import java.lang.Cloneable;
- import java.lang.Object;
- import java.util.List;
- import org.apache.http.HttpRequest;
- import org.apache.http.HttpRequestInterceptor;
- import org.apache.http.HttpResponse;
- import org.apache.http.HttpResponseInterceptor;
- import org.apache.http.protocol.HttpContext;
- import org.apache.http.protocol.HttpProcessor;
- import org.apache.http.protocol.HttpRequestInterceptorList;
- import org.apache.http.protocol.HttpResponseInterceptorList;
- @:native("org.apache.http.protocol.BasicHttpProcessor") @:final
- extern class BasicHttpProcessor extends Object, implements HttpProcessor, implements HttpRequestInterceptorList, implements HttpResponseInterceptorList, implements Cloneable
- {
- public static var requestInterceptors:List<Dynamic>;
- public static var responseInterceptors:List<Dynamic>;
- public function new():Void;
- @:overload(function addInterceptor(arg0:HttpRequestInterceptor, arg1:Int):Void {})
- @:overload(function addInterceptor(arg0:HttpResponseInterceptor, arg1:Int):Void {})
- @:overload(function addInterceptor(arg0:HttpRequestInterceptor):Void {})
- public function addInterceptor(arg0:HttpResponseInterceptor):Void;
- @:overload(function addRequestInterceptor(arg0:HttpRequestInterceptor, arg1:Int):Void {})
- public function addRequestInterceptor(arg0:HttpRequestInterceptor):Void;
- @:overload(function addResponseInterceptor(arg0:HttpResponseInterceptor, arg1:Int):Void {})
- public function addResponseInterceptor(arg0:HttpResponseInterceptor):Void;
- public function clearInterceptors():Void;
- public function clearRequestInterceptors():Void;
- public function clearResponseInterceptors():Void;
- override public function clone():Dynamic;
- public function copy():BasicHttpProcessor;
- private function copyInterceptors(arg0:BasicHttpProcessor):Void;
- public function getRequestInterceptor(arg0:Int):HttpRequestInterceptor;
- public function getRequestInterceptorCount():Int;
- public function getResponseInterceptor(arg0:Int):HttpResponseInterceptor;
- public function getResponseInterceptorCount():Int;
- @:overload(function process(arg0:HttpRequest, arg1:HttpContext):Void {})
- public function process(arg0:HttpResponse, arg1:HttpContext):Void;
- public function removeRequestInterceptorByClass(arg0:Class<Dynamic>):Void;
- public function removeResponseInterceptorByClass(arg0:Class<Dynamic>):Void;
- public function setInterceptors(arg0:List<Dynamic>):Void;
- }
Advertisement
Add Comment
Please, Sign In to add comment