Back to project page webimageloader.
The source code is released under:
Apache License
If you think the Android project webimageloader 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 com.webimageloader; /*from w w w .j av a2 s . com*/ import java.net.HttpURLConnection; /** * Interface for accessing a {@link HttpURLConnection} before a request is * made, this can be used for example doing authentication. This handler is * only used for http(s) connections. * * @author Alexander Blom <alexanderblom.se> */ public interface ConnectionHandler { /** * Called before a request. Note that this method is called from a * background thread. * @param connection the connection */ void handleConnection(HttpURLConnection connection); }