com.google.api.client.http
Interface HttpExecuteIntercepter


Deprecated. (scheduled to be removed in 1.5) Use HttpExecuteInterceptor

@Deprecated
public interface HttpExecuteIntercepter

HTTP request execute intercepter invoked at the start of HttpRequest.execute().

Useful for example for signing HTTP requests during authentication. Care should be taken to ensure that intercepters not interfere with each other since there are no guarantees regarding their independence. In particular, the order in which the intercepters are invoked is important.

Since:
1.0
Author:
Yaniv Inbar

Method Summary
 void intercept(HttpRequest request)
          Deprecated. Invoked at the start of HttpRequest.execute().
 

Method Detail

intercept

void intercept(HttpRequest request)
               throws IOException
Deprecated. 
Invoked at the start of HttpRequest.execute().

Throws:
IOException - any I/O exception


Copyright © 2010-2011 Google. All Rights Reserved.