Package com.castlabs.android.network
Interface HttpListener
-
public interface HttpListener
Listener related to HTTP events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onRedirect(int requestType, int httpCode, URL from, URL to)
An HTTP redirection (status code 3XX) has occurred.
-
-
-
Method Detail
-
onRedirect
void onRedirect(int requestType, int httpCode, @NonNull URL from, @NonNull URL to)
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
-
-