From 025301d08b061482c1f046d562bf017c8cbcfe8d Mon Sep 17 00:00:00 2001 From: ChrisC Date: Tue, 31 Jan 2017 11:40:03 +0100 Subject: Initial OpenECOMP MSO commit Change-Id: Ia6a7574859480717402cc2f22534d9973a78fa6d Signed-off-by: ChrisC --- asdc-controller/WebContent/WEB-INF/ejb-jar.xml | 4 + .../WEB-INF/jboss-deployment-structure.xml | 17 +++ asdc-controller/WebContent/WEB-INF/jboss-web.xml | 6 ++ asdc-controller/WebContent/WEB-INF/web.xml | 114 +++++++++++++++++++++ 4 files changed, 141 insertions(+) create mode 100644 asdc-controller/WebContent/WEB-INF/ejb-jar.xml create mode 100644 asdc-controller/WebContent/WEB-INF/jboss-deployment-structure.xml create mode 100644 asdc-controller/WebContent/WEB-INF/jboss-web.xml create mode 100644 asdc-controller/WebContent/WEB-INF/web.xml (limited to 'asdc-controller/WebContent') diff --git a/asdc-controller/WebContent/WEB-INF/ejb-jar.xml b/asdc-controller/WebContent/WEB-INF/ejb-jar.xml new file mode 100644 index 0000000000..c103a40921 --- /dev/null +++ b/asdc-controller/WebContent/WEB-INF/ejb-jar.xml @@ -0,0 +1,4 @@ + + + ASDCController + \ No newline at end of file diff --git a/asdc-controller/WebContent/WEB-INF/jboss-deployment-structure.xml b/asdc-controller/WebContent/WEB-INF/jboss-deployment-structure.xml new file mode 100644 index 0000000000..9a24bfc509 --- /dev/null +++ b/asdc-controller/WebContent/WEB-INF/jboss-deployment-structure.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/asdc-controller/WebContent/WEB-INF/jboss-web.xml b/asdc-controller/WebContent/WEB-INF/jboss-web.xml new file mode 100644 index 0000000000..2a1f26f2c4 --- /dev/null +++ b/asdc-controller/WebContent/WEB-INF/jboss-web.xml @@ -0,0 +1,6 @@ + + + + asdc + other + \ No newline at end of file diff --git a/asdc-controller/WebContent/WEB-INF/web.xml b/asdc-controller/WebContent/WEB-INF/web.xml new file mode 100644 index 0000000000..a8ccd17fec --- /dev/null +++ b/asdc-controller/WebContent/WEB-INF/web.xml @@ -0,0 +1,114 @@ + + + + ASDC Controller + + + + + resteasy.async.job.service.enabled + true + + + + resteasy.jndi.resources + java:module/MsoPropertiesFactory + + + + + + + resteasy.async.job.service.max.job.results + 100 + + + + + resteasy.async.job.service.max.wait + 300000 + + + + + resteasy.async.job.service.thread.pool.size + 100 + + + + + resteasy.async.job.service.base.path + /asynch/jobs + + + resteasy.scan + true + + + + + log.configuration + logback.asdc.xml + + + + mso.configuration + MSO_PROP_ASDC=mso.asdc.json,MSO_PROP_TOPOLOGY=topology.properties + + + + + resteasy.resources + org.openecomp.mso.logger.MsoLoggingServlet,org.openecomp.mso.asdc.healthcheck.HealthCheckHandler + + + + + org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap + + + + asdccontroller-servlet + + org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher + + + + asdccontroller-servlet + /* + + + + LogFilter + org.openecomp.mso.logger.LogFilter + + + LogFilter + /* + + + + + SiteStatus + SiteStatus APIs + /setStatus/* + POST + + + SiteControl-Client + + + + BASIC + ApplicationRealm + + + SiteControl-Client + + \ No newline at end of file -- cgit 1.2.3-korg