[Java-okhttp-gson] Do not set content-type if content type is null #2 (#11315)

* Fixing empty Content-Type in HTTP requests

* Updating samples
This commit is contained in:
mvistein
2022-01-16 03:29:47 +01:00
committed by GitHub
parent 0427681bc4
commit c12456de8e
28 changed files with 152 additions and 152 deletions

View File

@@ -122,7 +122,7 @@ public class AnotherFakeApi {
"application/json"
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}

View File

@@ -130,7 +130,7 @@ public class FakeApi {
"application/xml", "application/xml; charset=utf-8", "application/xml; charset=utf-16", "text/xml", "text/xml; charset=utf-8", "text/xml; charset=utf-16"
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -253,7 +253,7 @@ public class FakeApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -375,7 +375,7 @@ public class FakeApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -497,7 +497,7 @@ public class FakeApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -619,7 +619,7 @@ public class FakeApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -741,7 +741,7 @@ public class FakeApi {
"application/json"
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -869,7 +869,7 @@ public class FakeApi {
"application/json"
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -1000,7 +1000,7 @@ public class FakeApi {
"application/json"
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -1197,7 +1197,7 @@ public class FakeApi {
"application/x-www-form-urlencoded"
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -1417,7 +1417,7 @@ public class FakeApi {
"application/x-www-form-urlencoded"
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -1571,7 +1571,7 @@ public class FakeApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -1784,7 +1784,7 @@ public class FakeApi {
"application/json"
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -1916,7 +1916,7 @@ public class FakeApi {
"application/x-www-form-urlencoded"
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -2071,7 +2071,7 @@ public class FakeApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}

View File

@@ -122,7 +122,7 @@ public class FakeClassnameTags123Api {
"application/json"
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}

View File

@@ -126,7 +126,7 @@ public class PetApi {
"application/json", "application/xml"
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -259,7 +259,7 @@ public class PetApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -393,7 +393,7 @@ public class PetApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -530,7 +530,7 @@ public class PetApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -670,7 +670,7 @@ public class PetApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -806,7 +806,7 @@ public class PetApi {
"application/json", "application/xml"
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -949,7 +949,7 @@ public class PetApi {
"application/x-www-form-urlencoded"
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -1089,7 +1089,7 @@ public class PetApi {
"multipart/form-data"
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -1233,7 +1233,7 @@ public class PetApi {
"multipart/form-data"
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}

View File

@@ -124,7 +124,7 @@ public class StoreApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -249,7 +249,7 @@ public class StoreApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -371,7 +371,7 @@ public class StoreApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -505,7 +505,7 @@ public class StoreApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}

View File

@@ -123,7 +123,7 @@ public class UserApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -246,7 +246,7 @@ public class UserApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -369,7 +369,7 @@ public class UserApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -494,7 +494,7 @@ public class UserApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -623,7 +623,7 @@ public class UserApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -766,7 +766,7 @@ public class UserApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -903,7 +903,7 @@ public class UserApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
@@ -1021,7 +1021,7 @@ public class UserApi {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}