File tree Expand file tree Collapse file tree
android/sdl_android/src/main/java/com/smartdevicelink/util
baseAndroid/src/main/java/com/smartdevicelink/util
base/src/main/java/android/os
javaSE/src/main/java/com/smartdevicelink/util Expand file tree Collapse file tree File renamed without changes.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ package com .smartdevicelink .util ;
2+
3+ @ Deprecated
4+ public class HttpRequestTask {
5+ public static final String REQUEST_TYPE_POST = "POST" ;
6+ public static final String REQUEST_TYPE_GET = "GET" ;
7+ public static final String REQUEST_TYPE_DELETE = "DELETE" ;
8+
9+ @ Deprecated
10+ public HttpRequestTask ( HttpRequestTaskCallback hcb ){ }
11+
12+ @ Deprecated
13+ protected String doInBackground (String ... params ) {
14+ return null ;
15+ }
16+
17+ @ Deprecated
18+ public interface HttpRequestTaskCallback {
19+ public abstract void httpCallComplete (String response );
20+ public abstract void httpFailure (int statusCode );
21+ }
22+
23+ }
You can’t perform that action at this time.
0 commit comments