forked from loafle/openapi-generator-original
Adding the ability to get/set the httpClient for jersey2
This commit is contained in:
parent
bd705a49d6
commit
df60cd2d8b
@ -98,6 +98,15 @@ public class ApiClient {
|
|||||||
return json;
|
return json;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Client getHttpClient() {
|
||||||
|
return httpClient;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ApiClient setHttpClient(Client httpClient) {
|
||||||
|
this.httpClient = httpClient;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
public String getBasePath() {
|
public String getBasePath() {
|
||||||
return basePath;
|
return basePath;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user