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) --- .../main/webapp/WEB-INF/fusion-110-copy.hbm.xml | 392 +++++++++++++++++++++ .../src/main/webapp/WEB-INF/jsp/error.jsp | 1 + .../main/webapp/WEB-INF/oom-app-definitions.xml | 32 ++ .../src/main/webapp/WEB-INF/oom-app.hbm.xml | 37 ++ oom-app-overlay/src/main/webapp/WEB-INF/web.xml | 24 ++ 5 files changed, 486 insertions(+) create mode 100644 oom-app-overlay/src/main/webapp/WEB-INF/fusion-110-copy.hbm.xml create mode 100644 oom-app-overlay/src/main/webapp/WEB-INF/jsp/error.jsp create mode 100644 oom-app-overlay/src/main/webapp/WEB-INF/oom-app-definitions.xml create mode 100644 oom-app-overlay/src/main/webapp/WEB-INF/oom-app.hbm.xml create mode 100644 oom-app-overlay/src/main/webapp/WEB-INF/web.xml (limited to 'oom-app-overlay/src/main/webapp/WEB-INF') diff --git a/oom-app-overlay/src/main/webapp/WEB-INF/fusion-110-copy.hbm.xml b/oom-app-overlay/src/main/webapp/WEB-INF/fusion-110-copy.hbm.xml new file mode 100644 index 0000000..a827e6c --- /dev/null +++ b/oom-app-overlay/src/main/webapp/WEB-INF/fusion-110-copy.hbm.xml @@ -0,0 +1,392 @@ + + + + + + + + + + + + + + seq_fn_user + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + seq_fn_audit_log + + + + + + + + + + + + + seq_fn_role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + seq_fn_menu + + + + + + + + + + + + + + + + + + + + + + + + seq_fn_menu + + + + + + + + + + + + + + + + + + + + + + + + + + + + seq_fn_broadcast_message + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + select distinct md.parentMenu.id from MenuData as md where md.label = :paramLabel and md.label is not null + + + + select distinct md.id from MenuData as md where md.label = :paramLabel + + + + select distinct md.id, md.label, md.parentMenu.id from MenuData as md where md.label is not null + + + + select distinct functionCd from MenuData + + + + select distinct code from RoleFunction + + + + from MenuData where menuSetCode = :menu_set_cd and parentMenu is null + + + FROM UrlsAccessible A where upper(A.urlsAccessibleKey.url) = upper(:current_url) + + + + select firstName, lastName from User where id = :user_id + + + + select email from User where id = :user_id + + + + select id, firstName, lastName from User where active = true order by lastName, firstName + + + + select name from Role where id = :role_id + + + + select id, name from Role order by name + + + + + + + + + diff --git a/oom-app-overlay/src/main/webapp/WEB-INF/jsp/error.jsp b/oom-app-overlay/src/main/webapp/WEB-INF/jsp/error.jsp new file mode 100644 index 0000000..9583314 --- /dev/null +++ b/oom-app-overlay/src/main/webapp/WEB-INF/jsp/error.jsp @@ -0,0 +1 @@ +${errMsg} diff --git a/oom-app-overlay/src/main/webapp/WEB-INF/oom-app-definitions.xml b/oom-app-overlay/src/main/webapp/WEB-INF/oom-app-definitions.xml new file mode 100644 index 0000000..69f7a05 --- /dev/null +++ b/oom-app-overlay/src/main/webapp/WEB-INF/oom-app-definitions.xml @@ -0,0 +1,32 @@ + + + + + + + + + + diff --git a/oom-app-overlay/src/main/webapp/WEB-INF/oom-app.hbm.xml b/oom-app-overlay/src/main/webapp/WEB-INF/oom-app.hbm.xml new file mode 100644 index 0000000..f92261d --- /dev/null +++ b/oom-app-overlay/src/main/webapp/WEB-INF/oom-app.hbm.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + diff --git a/oom-app-overlay/src/main/webapp/WEB-INF/web.xml b/oom-app-overlay/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..3a90041 --- /dev/null +++ b/oom-app-overlay/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,24 @@ + + + + \ No newline at end of file -- cgit 1.2.3-korg