Initialize MSB java sdk docs 69/14469/1
authorHuabingZhao <zhao.huabing@zte.com.cn>
Fri, 22 Sep 2017 05:58:01 +0000 (13:58 +0800)
committerHuabingZhao <zhao.huabing@zte.com.cn>
Fri, 22 Sep 2017 05:58:01 +0000 (13:58 +0800)
Change-Id: I657ee91d5ec92320c065e3d6c13ef07222c8120e
Issue-Id: MSB-81
Signed-off-by: HtuabingZhao <zhao.huabing@zte.com.cn>
.checkstyle [new file with mode: 0644]
docs/index.rst [new file with mode: 0644]
example/src/main/java/org/onap/msb/sdk/example/client/ExampleClient.java
example/src/main/java/org/onap/msb/sdk/example/server/ExampleApp.java

diff --git a/.checkstyle b/.checkstyle
new file mode 100644 (file)
index 0000000..2cd01ac
--- /dev/null
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<fileset-config file-format-version="1.2.0" simple-config="false" sync-formatter="false">
+  <local-check-config name="maven-checkstyle-plugin check-license" location="jar:file:/D:/mvnlocalrepo/org/onap/oparent/checkstyle/1.0.0-SNAPSHOT/checkstyle-1.0.0-SNAPSHOT.jar!/onap-checkstyle/check-license.xml" type="remote" description="maven-checkstyle-plugin configuration check-license">
+    <property name="checkstyle.cache.file" value="${project_loc}/target/checkstyle-cachefile"/>
+    <property name="checkstyle.header.file" value="D:\eclipse\workspace\.metadata\.plugins\org.eclipse.core.resources\.projects\msb-java-sdk\com.basistech.m2e.code.quality.checkstyleConfigurator\checkstyle-header-check-license.txt"/>
+  </local-check-config>
+  <local-check-config name="maven-checkstyle-plugin check-style" location="jar:file:/D:/mvnlocalrepo/org/onap/oparent/checkstyle/1.0.0-SNAPSHOT/checkstyle-1.0.0-SNAPSHOT.jar!/onap-checkstyle/onap-java-style.xml" type="remote" description="maven-checkstyle-plugin configuration check-style">
+    <property name="checkstyle.cache.file" value="${project_loc}/target/checkstyle-cachefile"/>
+    <property name="checkstyle.header.file" value="D:\eclipse\workspace\.metadata\.plugins\org.eclipse.core.resources\.projects\msb-java-sdk\com.basistech.m2e.code.quality.checkstyleConfigurator\checkstyle-header-check-style.txt"/>
+  </local-check-config>
+  <fileset name="java-sources-check-license" enabled="true" check-config-name="maven-checkstyle-plugin check-license" local="true">
+    <file-match-pattern match-pattern="^src/test/java.*\.java" include-pattern="true"/>
+    <file-match-pattern match-pattern="^src/main/java/.*\.java" include-pattern="true"/>
+  </fileset>
+  <fileset name="java-sources-check-style" enabled="true" check-config-name="maven-checkstyle-plugin check-style" local="true">
+    <file-match-pattern match-pattern="^src/main/java/src/main/java.*\.java" include-pattern="true"/>
+    <file-match-pattern match-pattern="^src/test/java.*\.java" include-pattern="true"/>
+    <file-match-pattern match-pattern="^src/main/java/.*\.java" include-pattern="true"/>
+    <file-match-pattern match-pattern="^src/main/resources.*\.properties" include-pattern="true"/>
+    <file-match-pattern match-pattern="^src/test/resources.*\.properties" include-pattern="true"/>
+  </fileset>
+</fileset-config>
diff --git a/docs/index.rst b/docs/index.rst
new file mode 100644 (file)
index 0000000..833e1aa
--- /dev/null
@@ -0,0 +1,8 @@
+.. This work is licensed under a Creative Commons Attribution 4.0 International License.
+
+TODO Add files to toctree and delete this header
+------------------------------------------------
+.. toctree::
+   :maxdepth: 1
+
+
index 15a9f6f..ac31836 100644 (file)
@@ -28,8 +28,8 @@ public class ExampleClient {
    */
   public static void main(String[] args) throws IOException {
     //For real use case, MSB IP and Port should come from configuration file instead of hard code here
-    String MSB_IP="127.0.0.1";
-    int MSB_Port=10081;
+    String MSB_IP="10.96.33.44";
+    int MSB_Port=30081;
     
     MSBServiceClient msbClient = new MSBServiceClient(MSB_IP, MSB_Port);
     
index 76827c5..f44ba39 100644 (file)
@@ -39,8 +39,8 @@ public class ExampleApp extends Application<Config> {
   @Override
   public void run(Config configuration, Environment environment) throws Exception {
     
-    String MSB_IP="127.0.0.1";
-    int MSB_Port=10081;
+    String MSB_IP="10.96.33.44";
+    int MSB_Port=30080;
     
     environment.jersey().register(new AnimalResource());