Initial OpenECOMP MSO commit

Change-Id: Ia6a7574859480717402cc2f22534d9973a78fa6d
Signed-off-by: ChrisC <cc697w@intl.att.com>
diff --git a/mso-api-handlers/mso-api-handler-infra/WebContent/META-INF/MANIFEST.MF b/mso-api-handlers/mso-api-handler-infra/WebContent/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..5e94951
--- /dev/null
+++ b/mso-api-handlers/mso-api-handler-infra/WebContent/META-INF/MANIFEST.MF
@@ -0,0 +1,3 @@
+Manifest-Version: 1.0

+Class-Path: 

+

diff --git a/mso-api-handlers/mso-api-handler-infra/WebContent/WEB-INF/beans.xml b/mso-api-handlers/mso-api-handler-infra/WebContent/WEB-INF/beans.xml
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/mso-api-handlers/mso-api-handler-infra/WebContent/WEB-INF/beans.xml
diff --git a/mso-api-handlers/mso-api-handler-infra/WebContent/WEB-INF/jboss-deployment-structure.xml b/mso-api-handlers/mso-api-handler-infra/WebContent/WEB-INF/jboss-deployment-structure.xml
new file mode 100644
index 0000000..88d5024
--- /dev/null
+++ b/mso-api-handlers/mso-api-handler-infra/WebContent/WEB-INF/jboss-deployment-structure.xml
@@ -0,0 +1,17 @@
+<jboss-deployment-structure>

+	<deployment>

+		<!-- Exclusions allow you to prevent the server from automatically adding some dependencies -->

+		<exclusions>

+			<module name="org.apache.log4j" />

+			<module name="org.slf4j" />

+			<module name="org.slf4j.impl" />

+		</exclusions>

+		<dependencies>

+			    <module name="org.jboss.jandex" slot="main" />

+                <module name="org.javassist" slot="main" />

+                <module name="org.antlr" slot="main" />

+                <module name="org.dom4j" slot="main" />

+		</dependencies>

+	</deployment>

+</jboss-deployment-structure>

+

diff --git a/mso-api-handlers/mso-api-handler-infra/WebContent/WEB-INF/jboss-web.xml b/mso-api-handlers/mso-api-handler-infra/WebContent/WEB-INF/jboss-web.xml
new file mode 100644
index 0000000..e1023bf
--- /dev/null
+++ b/mso-api-handlers/mso-api-handler-infra/WebContent/WEB-INF/jboss-web.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>

+

+<jboss-web>

+    <context-root>ecomp/mso/infra</context-root>

+    <security-domain>other</security-domain>

+</jboss-web>
\ No newline at end of file
diff --git a/mso-api-handlers/mso-api-handler-infra/WebContent/WEB-INF/web.xml b/mso-api-handlers/mso-api-handler-infra/WebContent/WEB-INF/web.xml
new file mode 100644
index 0000000..e34740d
--- /dev/null
+++ b/mso-api-handlers/mso-api-handler-infra/WebContent/WEB-INF/web.xml
@@ -0,0 +1,141 @@
+<?xml version="1.0" encoding="UTF-8"?>

+

+<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">

+  <display-name>MSO API Handler Infra</display-name>

+ 

+ 

+   <context-param>

+	<param-name>resteasy.jndi.resources</param-name>

+	<param-value>java:module/MsoPropertiesFactory</param-value>

+   </context-param>

+ 

+   <!-- enable the Asynchronous Job Service -->

+    <context-param>

+        <param-name>resteasy.async.job.service.enabled</param-name>

+        <param-value>true</param-value>

+    </context-param>

+

+    <!-- The next context parameters are all optional.  

+         Their default values are shown as example param-values -->

+

+    <!-- How many jobs results can be held in memory at once? -->

+    <context-param>

+        <param-name>resteasy.async.job.service.max.job.results</param-name>

+        <param-value>100</param-value>

+    </context-param>

+

+    <!-- Maximum wait time on a job when a client is querying for it -->

+    <context-param>

+        <param-name>resteasy.async.job.service.max.wait</param-name>

+        <param-value>300000</param-value>

+    </context-param>

+

+    <!-- Thread pool size of background threads that run the job -->

+    <context-param>

+        <param-name>resteasy.async.job.service.thread.pool.size</param-name>

+        <param-value>100</param-value>

+    </context-param>

+

+    <!-- Set the base path for the Job uris -->

+    <context-param>

+        <param-name>resteasy.async.job.service.base.path</param-name>

+        <param-value>/asynch/jobs</param-value>

+    </context-param>

+  <context-param>

+    <param-name>resteasy.scan</param-name>

+    <param-value>true</param-value>

+  </context-param>

+ 

+  <!--  

+  <context-param>

+    <param-name>resteasy.servlet.mapping.prefix</param-name>

+    <param-value>/v1</param-value>

+  </context-param>

+  -->

+   <context-param>

+  	<param-name>log.configuration</param-name>

+  	<param-value>logback.apihandler-infra.xml</param-value>

+  </context-param>

+  

+  <context-param>

+  	<param-name>mso.configuration</param-name>

+  	<param-value>MSO_PROP_APIHANDLER_INFRA=mso.apihandler-infra.properties,MSO_PROP_TOPOLOGY=topology.properties</param-value>

+  </context-param>

+  

+  <context-param>

+    <param-name>resteasy.resources</param-name>

+    <param-value>org.openecomp.mso.logger.MsoLoggingServlet</param-value>

+  </context-param>

+  

+  <listener>

+    <listener-class>

+			org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap

+	</listener-class>

+  </listener>

+  <servlet>

+    <servlet-name>msoapihandler-infra-servlet</servlet-name>

+    <servlet-class>

+			org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher

+		</servlet-class>

+  </servlet>

+  <servlet-mapping>

+    <servlet-name>msoapihandler-infra-servlet</servlet-name>

+    <url-pattern>/*</url-pattern>

+  </servlet-mapping>

+

+  <security-constraint>

+    <web-resource-collection>

+      <web-resource-name>HealthcheckNoAuth</web-resource-name>

+      <description>No Authentication for Healthcheck</description>

+      <url-pattern>/healthcheck</url-pattern>

+        <url-pattern>/nodehealthcheck</url-pattern>

+        <url-pattern>/globalhealthcheck</url-pattern>

+      <http-method>GET</http-method>

+      <http-method>POST</http-method>

+      </web-resource-collection>

+   </security-constraint>

+    <security-constraint>

+        <web-resource-collection>

+            <web-resource-name>SiteStatus</web-resource-name>

+            <description>SiteStatus APIs</description>

+            <url-pattern>/setStatus/*</url-pattern>

+            <http-method>POST</http-method>

+        </web-resource-collection>

+        <auth-constraint>

+            <role-name>SiteControl-Client</role-name>

+        </auth-constraint>

+    </security-constraint>

+   <security-constraint>

+ 	 <web-resource-collection>

+      <web-resource-name>HTTPBasicAuth</web-resource-name>

+      <description>Authentication for Infra Portal</description>

+      <url-pattern>/*</url-pattern>

+      <http-method>POST</http-method>

+      <http-method>GET</http-method>

+     </web-resource-collection>

+      <auth-constraint>

+       <role-name>InfraPortal-Client</role-name>

+     </auth-constraint>

+  </security-constraint>

+ 

+  <login-config>

+  	<auth-method>BASIC</auth-method>

+    <realm-name>ApplicationRealm</realm-name>

+  </login-config>

+  <security-role>

+    <role-name>InfraPortal-Client</role-name>

+  </security-role>

+    <security-role>

+        <role-name>SiteControl-Client</role-name>

+    </security-role>

+

+    <filter>

+		<filter-name>LogFilter</filter-name>

+		<filter-class>org.openecomp.mso.logger.LogFilter</filter-class>	

+  </filter>

+    <filter-mapping>

+		<filter-name>LogFilter</filter-name>

+		<url-pattern>/*</url-pattern>

+	</filter-mapping>

+  

+</web-app>

diff --git a/mso-api-handlers/mso-api-handler-infra/WebContent/check.html b/mso-api-handlers/mso-api-handler-infra/WebContent/check.html
new file mode 100644
index 0000000..ea2f0e2
--- /dev/null
+++ b/mso-api-handlers/mso-api-handler-infra/WebContent/check.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>

+<html>

+<head>

+<meta charset="ISO-8859-1">

+<title>Health Check</title>

+</head>

+<body>

+Application ready

+</body>

+</html>

+

diff --git a/mso-api-handlers/mso-api-handler-infra/WebContent/index.xhtml b/mso-api-handlers/mso-api-handler-infra/WebContent/index.xhtml
new file mode 100644
index 0000000..f902af8
--- /dev/null
+++ b/mso-api-handlers/mso-api-handler-infra/WebContent/index.xhtml
@@ -0,0 +1,19 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 

+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

+

+<html xmlns="http://www.w3.org/1999/xhtml"

+    xmlns:ui="http://java.sun.com/jsf/facelets"

+    xmlns:h="http://java.sun.com/jsf/html"

+    xmlns:f="http://java.sun.com/jsf/core">

+

+<f:loadBundle basename="resources.application" var="msg"/>

+

+<head>

+    <title><h:outputText value="#{msg.welcomeTitle}" /></title>

+</head>

+

+<body>

+<h3><h:outputText value="#{msg.welcomeHeading}" /></h3>

+<p><h:outputText value="#{msg.welcomeMessage}" /></p>

+</body>

+</html>