Package com.castlabs.android.network
Interface HttpListener
public interface HttpListener
Listener related to HTTP events.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onRedirect
(int requestType, int httpCode, URL from, URL to) An HTTP redirection (status code 3XX) has occurred.
-
Method Details
-
onRedirect
An HTTP redirection (status code 3XX) has occurred.- Parameters:
requestType
- Data type for this requesthttpCode
- The HTTP 3XX codefrom
- Original URLto
- Redirected URL, got from the "location" HTTP header
-