Add initial document file for esr-gui. 79/15279/1
authorlizi00164331 <li.zi30@zte.com.cn>
Tue, 26 Sep 2017 02:08:54 +0000 (10:08 +0800)
committerlizi00164331 <li.zi30@zte.com.cn>
Tue, 26 Sep 2017 02:08:54 +0000 (10:08 +0800)
Change-Id: Ia19541c8f6d1309ff561f05099ab81ab6159de50
Issue-ID: AAI-385
Signed-off-by: lizi00164331 <li.zi30@zte.com.cn>
docs/index.rst [new file with mode: 0644]
integration/src/main/java/org/onap/aai/esr/system/SystemListener.java

diff --git a/docs/index.rst b/docs/index.rst
new file mode 100644 (file)
index 0000000..5aeaac7
--- /dev/null
@@ -0,0 +1,19 @@
+.. This work is licensed under a Creative Commons Attribution 4.0 International License.
+
+AAI-esr-server
+------------------------------------------------
+
+ESR provide a way to register external system which not included in ONAP system, mainly inclouded VIM/VNFM/EMS/thirdparty SDNC. esr-gui as the front end of exteral system register service mainly provide a portal for users to register a external system. 
+
+ESR comprises two modules: the esr server module and the esr gui module. And both esr service and esr gui belongs A&AI.
+
+- AAI
+    - ESR server Module
+    - ESR gui Module
+
+.. toctree::
+   :maxdepth: 1
+   
+
+
+
index 7b06256..0161fcc 100644 (file)
@@ -31,9 +31,9 @@ public class SystemListener implements ServletContextListener {
     }
 
     public void contextInitialized(ServletContextEvent servletContextEvent) {
-        logger.info("open-o portal register task begin.");
+        logger.info("onap esr gui register task begin.");
         String registerFilePath = SystemListener.class.getClassLoader().getResource("").getPath() + "portalConfig" + File.separator + "msb_register.xml";
         RegisterService.registerMsb(registerFilePath);
-        logger.info("open-o portal register task ended.");
+        logger.info("onap esr gui register task ended.");
     }
 }