Home | History | Annotate | Download | only in core

Lines Matching defs:this

9  * distributed with this work for additional information
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
25 * This software consists of voluntary contributions made by many
70 this.params = new BasicHttpParams();
71 this.params
77 this.httpproc = new BasicHttpProcessor();
79 this.httpproc.addInterceptor(new RequestContent());
80 this.httpproc.addInterceptor(new RequestTargetHost());
82 this.httpproc.addInterceptor(new RequestConnControl());
83 this.httpproc.addInterceptor(new RequestUserAgent());
84 this.httpproc.addInterceptor(new RequestExpectContinue());
86 this.httpexecutor = new HttpRequestExecutor();
87 this.connStrategy = new DefaultConnectionReuseStrategy();
88 this.context = new BasicHttpContext(null);
92 return this.params;
99 this.context.setAttribute(ExecutionContext.HTTP_REQUEST, request);
100 this.context.setAttribute(ExecutionContext.HTTP_TARGET_HOST, targetHost);
101 this.context.setAttribute(ExecutionContext.HTTP_CONNECTION, conn);
103 new DefaultedHttpParams(request.getParams(), this.params));
104 this.httpexecutor.preProcess(request, this.httpproc, this.context);
105 HttpResponse response = this.httpexecutor.execute(request, conn, this.context);
107 new DefaultedHttpParams(response.getParams(), this.params));
108 this.httpexecutor.postProcess(response, this.httpproc, this.context);
113 return this.connStrategy.keepAlive(response, this.context);