Sync Integ to Master
[sdc.git] / common-app-api / src / main / java / org / openecomp / sdc / common / http / config / ExternalServiceConfig.java
1 package org.openecomp.sdc.common.http.config;
2
3 public class ExternalServiceConfig {
4     
5     private HttpRequestConfig httpRequestConfig;
6     private HttpClientConfig httpClientConfig;
7
8     public HttpRequestConfig getHttpRequestConfig() {
9         return httpRequestConfig;
10     }
11     
12     public void setHttpRequestConfig(HttpRequestConfig httpRequestConfig) {
13         this.httpRequestConfig = httpRequestConfig;
14     }
15
16     public HttpClientConfig getHttpClientConfig() {
17         return httpClientConfig;
18     }
19
20     public void setHttpClientConfig(HttpClientConfig httpClientConfig) {
21         this.httpClientConfig = httpClientConfig;
22     }
23
24     @Override
25     public String toString() {
26         StringBuilder builder = new StringBuilder();
27         builder.append("ExternalServiceConfig [httpRequestConfig=");
28         builder.append(httpRequestConfig);
29         builder.append(", httpClientConfig=");
30         builder.append(httpClientConfig);
31         builder.append("]");
32         return builder.toString();
33     }
34
35 }