File tree Expand file tree Collapse file tree
android/src/main/java/net/servicestack/client
client/src/main/java/net/servicestack/client Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -257,6 +257,11 @@ public static boolean hasRequestBody(String httpMethod)
257257 return true ;
258258 }
259259
260+ @ Override
261+ public boolean getAlwaysSendBasicAuthHeaders () {
262+ return this .alwaysSendBasicAuthHeaders ;
263+ }
264+
260265 @ Override
261266 public void setAlwaysSendBasicAuthHeaders (boolean value ) {
262267 this .alwaysSendBasicAuthHeaders = value ;
Original file line number Diff line number Diff line change 88import java .util .Map ;
99
1010public interface ServiceClient {
11+ boolean getAlwaysSendBasicAuthHeaders ();
1112 void setAlwaysSendBasicAuthHeaders (boolean value );
1213 void setCredentials (String userName , String password );
1314
Original file line number Diff line number Diff line change @@ -257,6 +257,11 @@ public static boolean hasRequestBody(String httpMethod)
257257 return true ;
258258 }
259259
260+ @ Override
261+ public boolean getAlwaysSendBasicAuthHeaders () {
262+ return this .alwaysSendBasicAuthHeaders ;
263+ }
264+
260265 @ Override
261266 public void setAlwaysSendBasicAuthHeaders (boolean value ) {
262267 this .alwaysSendBasicAuthHeaders = value ;
Original file line number Diff line number Diff line change 88import java .util .Map ;
99
1010public interface ServiceClient {
11+ boolean getAlwaysSendBasicAuthHeaders ();
1112 void setAlwaysSendBasicAuthHeaders (boolean value );
1213 void setCredentials (String userName , String password );
1314
You can’t perform that action at this time.
0 commit comments