From e8c966373f25bc769fae4512bccc44903bf7309b Mon Sep 17 00:00:00 2001 From: "Christopher Lott (cl778h)" Date: Fri, 18 Aug 2017 10:09:01 -0400 Subject: Rename to OOM (no more ecd) - Change to OOM Dashboard (no more ECOMP Controller) - Rework some exception handling Issue: CCSDK-61 Change-Id: Id5379e8b272b651373c79f46b20da1d32de013ed Signed-off-by: Christopher Lott (cl778h) --- oom-app-overlay/src/main/webapp/manifest.jsp | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 oom-app-overlay/src/main/webapp/manifest.jsp (limited to 'oom-app-overlay/src/main/webapp/manifest.jsp') diff --git a/oom-app-overlay/src/main/webapp/manifest.jsp b/oom-app-overlay/src/main/webapp/manifest.jsp new file mode 100644 index 0000000..417825f --- /dev/null +++ b/oom-app-overlay/src/main/webapp/manifest.jsp @@ -0,0 +1,28 @@ +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8"%> +<% + // Read contents of maven-generated manifest file. + final String path = "/META-INF/MANIFEST.MF"; + java.io.InputStream input = getServletContext().getResourceAsStream(path); + java.io.InputStreamReader reader = new java.io.InputStreamReader(input, "UTF-8"); + char [] buf = new char[1024]; + int length = reader.read(buf, 0, buf.length); + final String manifest = new String(buf, 0, length); + reader.close(); + input.close(); +%> + + + + +Manifest + + +

+Contents of file <%= path %>: +

+
+<%= manifest %>
+
+ + -- cgit 1.2.3-korg