diff options
author | Rob Daugherty <rd472p@att.com> | 2018-03-07 18:32:31 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-03-07 18:32:31 +0000 |
commit | 61b1d1cdd962f95015add112c54c25a7f998079c (patch) | |
tree | 1de4b1faeed56aaf1a16ef09d7fec74d100e7114 /bpmn/MSORESTClient | |
parent | 3c58fde8c72524579c139f25424c5b583c1070f2 (diff) | |
parent | 07b8dfda7bc1b5b8167941842db9d88ede5ddb5a (diff) |
Merge "Fix javadoc"
Diffstat (limited to 'bpmn/MSORESTClient')
-rw-r--r-- | bpmn/MSORESTClient/src/main/java/org/openecomp/mso/rest/RESTClient.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bpmn/MSORESTClient/src/main/java/org/openecomp/mso/rest/RESTClient.java b/bpmn/MSORESTClient/src/main/java/org/openecomp/mso/rest/RESTClient.java index 87f5786807..3170e49371 100644 --- a/bpmn/MSORESTClient/src/main/java/org/openecomp/mso/rest/RESTClient.java +++ b/bpmn/MSORESTClient/src/main/java/org/openecomp/mso/rest/RESTClient.java @@ -242,16 +242,16 @@ public class RESTClient { /** * Creates a RESTClient with the RESTConfig object. * - * @param RESTConfig config to use for sending request + * @param restConfig config to use for sending request * * @throws RESTException if unable to create a RESTClient */ - public RESTClient(RESTConfig cfg) throws RESTException { + public RESTClient(RESTConfig restConfig) throws RESTException { this.headers = new LinkedHashMap<>(); this.parameters = new LinkedHashMap<>(); - this.URL = cfg.getURL(); - this.proxyHost = cfg.getProxyHost(); - this.proxyPort = cfg.getProxyPort(); + this.URL = restConfig.getURL(); + this.proxyHost = restConfig.getProxyHost(); + this.proxyPort = restConfig.getProxyPort(); } /** |