aboutsummaryrefslogtreecommitdiffstats
path: root/example/src/main/java/org/onap/msb/sdk/example/client/ExampleClient.java
diff options
context:
space:
mode:
authorHuabingZhao <zhao.huabing@zte.com.cn>2017-08-18 17:27:07 +0800
committerHuabingZhao <zhao.huabing@zte.com.cn>2017-08-18 17:27:34 +0800
commitc58657cd2a5d14389ab235c65a43283300ac3cfe (patch)
tree800de87e48c7c8f51ec4045e1a161b0a39a0fe2b /example/src/main/java/org/onap/msb/sdk/example/client/ExampleClient.java
parent9252e604db14785fe5382e33cedffbdd2759091d (diff)
Change comments to English
Issue_Id: MSB-22 Change-Id: I9cc5eee1adeb3c271f543ff6a8ff717764ccd5a7 Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
Diffstat (limited to 'example/src/main/java/org/onap/msb/sdk/example/client/ExampleClient.java')
-rw-r--r--example/src/main/java/org/onap/msb/sdk/example/client/ExampleClient.java7
1 files changed, 2 insertions, 5 deletions
diff --git a/example/src/main/java/org/onap/msb/sdk/example/client/ExampleClient.java b/example/src/main/java/org/onap/msb/sdk/example/client/ExampleClient.java
index 59263f1..2bcbae1 100644
--- a/example/src/main/java/org/onap/msb/sdk/example/client/ExampleClient.java
+++ b/example/src/main/java/org/onap/msb/sdk/example/client/ExampleClient.java
@@ -11,9 +11,6 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
******************************************************************************/
-/**
- *
- */
package org.onap.msb.sdk.example.client;
import java.io.IOException;
@@ -21,7 +18,7 @@ import java.io.IOException;
import org.onap.msb.sdk.example.common.Animal;
import org.onap.msb.sdk.httpclient.RetrofitServiceCreater;
import org.onap.msb.sdk.httpclient.conf.HttpClientConf;
-import org.onap.msb.sdk.httpclient.msb.MSBServiceWrapperClient;
+import org.onap.msb.sdk.httpclient.msb.MSBServiceClient;
public class ExampleClient {
@@ -35,7 +32,7 @@ public class ExampleClient {
int MSB_Port=10081;
HttpClientConf globalHttpClientConf = new HttpClientConf();
- MSBServiceWrapperClient msbClient = new MSBServiceWrapperClient(MSB_IP, MSB_Port);
+ MSBServiceClient msbClient = new MSBServiceClient(MSB_IP, MSB_Port);
RetrofitServiceCreater retrofitServiceCreater =
new RetrofitServiceCreater(globalHttpClientConf, msbClient);