aboutsummaryrefslogtreecommitdiffstats
path: root/packages/apex-pdp-package-full/src/main/package/examples/html
diff options
context:
space:
mode:
authorliamfallon <liam.fallon@ericsson.com>2018-09-05 15:46:31 +0100
committerliamfallon <liam.fallon@ericsson.com>2018-09-06 13:26:24 +0100
commita41c877a6b1980e0e866699633e0289d9a3fdbb5 (patch)
tree4f8d15559549760c2e74880871ec08c3b8df2d0e /packages/apex-pdp-package-full/src/main/package/examples/html
parent825ae627d4378c5cc7ab4b7d5f4b4ffefcb7977e (diff)
Fix package of apex examples and documents
The examples are not packaged correctly in the apex build and the client wars are missing The links and location of the documents are corrected. Some POM duplicate dependencies removed. Javadoc warnings removed. Issue-ID: POLICY-867 Change-Id: I555c29191c61c0a9887365d95005dbc584eddf04 Signed-off-by: liamfallon <liam.fallon@ericsson.com>
Diffstat (limited to 'packages/apex-pdp-package-full/src/main/package/examples/html')
-rw-r--r--packages/apex-pdp-package-full/src/main/package/examples/html/DecisionMaker/MakeDecisionExtraMode_Client.html156
-rw-r--r--packages/apex-pdp-package-full/src/main/package/examples/html/DecisionMaker/MakeDecisionExtraMode_Server.html156
-rw-r--r--packages/apex-pdp-package-full/src/main/package/examples/html/DecisionMaker/MakeDecision_Client.html153
-rw-r--r--packages/apex-pdp-package-full/src/main/package/examples/html/DecisionMaker/MakeDecision_Server.html153
4 files changed, 0 insertions, 618 deletions
diff --git a/packages/apex-pdp-package-full/src/main/package/examples/html/DecisionMaker/MakeDecisionExtraMode_Client.html b/packages/apex-pdp-package-full/src/main/package/examples/html/DecisionMaker/MakeDecisionExtraMode_Client.html
deleted file mode 100644
index 1077939b0..000000000
--- a/packages/apex-pdp-package-full/src/main/package/examples/html/DecisionMaker/MakeDecisionExtraMode_Client.html
+++ /dev/null
@@ -1,156 +0,0 @@
-<!--
- ============LICENSE_START=======================================================
- Copyright (C) 2016-2018 Ericsson. All rights reserved.
- ================================================================================
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-
- SPDX-License-Identifier: Apache-2.0
- ============LICENSE_END=========================================================
--->
-
-<!-- http://localhost:3904/events/toApex -->
-
-<html>
-<head>
-<script src="http://code.jquery.com/jquery-latest.js"></script>
-<script>
- $(document).ready(function() {
- $("#answerspost").click(function(e) {
- var elements = document.getElementById("answerform").elements;
-
- var formValues = new Object;
- formValues["name"] = "AnswerEvent";
- for (var i = 0, element; element = elements[i++];) {
- if (element.type === "text" && element.value != "") {
- formValues[element.name] = element.value;
- }
- }
- console.log(formValues);
- var stringifiedForm = JSON.stringify(formValues);
- console.log(stringifiedForm);
- $.ajax({
- type : "POST",
- url : "http://localhost:3904/events/toApex",
- data : stringifiedForm,
- crossDomain : true,
- contentType : "application/json; charset=utf-8",
- success : function(data) {
- alert("Answers Set Successfully !!!");
- },
- failure : function(errMsg) {
- alert(errMsg);
- }
- });
- e.preventDefault(); //STOP default action
-
- });
- });
-</script>
-<script>
- $(document).ready(function() {
- $("#modepost").click(function(e) {
- var elements = document.getElementById("modeform").elements;
-
- var formValues = new Object;
- formValues["name"] = "MakeDecisionEvent";
- for (var i = 0, element; element = elements[i++];) {
- if (element.type === "radio" && element.checked) {
- formValues[element.name] = element.value;
- }
- }
- console.log(formValues);
- var stringifiedForm = JSON.stringify(formValues);
- console.log(stringifiedForm);
- $.ajax({
- type : "POST",
- url : "http://localhost:3904/events/toApex",
- data : stringifiedForm,
- crossDomain : true,
- contentType : "application/json; charset=utf-8",
- success : function(data) {
- alert("Decision Taken: " + data.decision);
- },
- failure : function(errMsg) {
- alert(errMsg);
- }
- });
- e.preventDefault(); //STOP default action
-
- });
- });
-</script>
-</head>
-<body>
- <h3>Decision Maker Answers</h3>
- <form name="answerform" id="answerform" method="POST">
- <table>
- <tr>
- <td>First Answer:</td>
- <td><input type="text" name="a0" value="Never Ever" /></td>
- </tr>
- <tr>
- <td>Second Answer:</td>
- <td><input type="text" name="a1" value="No" /></td>
- </tr>
- <tr>
- <td>Third Answer:</td>
- <td><input type="text" name="a2" value="Maybe not" /></td>
- </tr>
- <tr>
- <td>Fourth Answer</td>
- <td><input type="text" name="a3" value="Wait" /></td>
- </tr>
- <tr>
- <td>Fifth Answer:</td>
- <td><input type="text" name="a4" value="Maybe" /></td>
- </tr>
- <tr>
- <td>Sixth Answer:</td>
- <td><input type="text" name="a5" value="Yes" /></td>
- </tr>
- <tr>
- <td>Seventh Answer:</td>
- <td><input type="text" name="a6" value="Absolutely" /></td>
- </tr>
- <tr>
- <td />
- <td><input type="button" class="btn btn-info" id="answerspost"
- value="Set Answers"></td>
- </tr>
- </table>
- </form>
- <h3>Decision Maker Mode</h3>
- <form name="modeform" id="modeform" method="POST">
- <table>
- <tr>
- <td><input name="mode" type="radio" value="random"
- checked="checked">random</td>
- <td><input name="mode" type="radio" value="pessimistic">pessimistic</td>
- <td><input name="mode" type="radio" value="optimistic">
- optimistic</td>
- <td><input name="mode" type="radio" value="dithering">dithering</td>
- <td><input name="mode" type="radio" value="roundrobin">round
- robin</td>
- </tr>
- <tr>
- <td />
- <td />
- <td />
- <td />
- <td><input type="button" class="btn btn-info" id="modepost"
- value="Make Decision"></td>
- </tr>
- </table>
- </form>
-</body>
-</html>
diff --git a/packages/apex-pdp-package-full/src/main/package/examples/html/DecisionMaker/MakeDecisionExtraMode_Server.html b/packages/apex-pdp-package-full/src/main/package/examples/html/DecisionMaker/MakeDecisionExtraMode_Server.html
deleted file mode 100644
index 06df67e59..000000000
--- a/packages/apex-pdp-package-full/src/main/package/examples/html/DecisionMaker/MakeDecisionExtraMode_Server.html
+++ /dev/null
@@ -1,156 +0,0 @@
-<!--
- ============LICENSE_START=======================================================
- Copyright (C) 2016-2018 Ericsson. All rights reserved.
- ================================================================================
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-
- SPDX-License-Identifier: Apache-2.0
- ============LICENSE_END=========================================================
--->
-
-<!-- http://localhost:23324/apex/EventIn -->
-
-<html>
-<head>
-<script src="http://code.jquery.com/jquery-latest.js"></script>
-<script>
- $(document).ready(function() {
- $("#answerspost").click(function(e) {
- var elements = document.getElementById("answerform").elements;
-
- var formValues = new Object;
- formValues["name"] = "AnswerEvent";
- for (var i = 0, element; element = elements[i++];) {
- if (element.type === "text" && element.value != "") {
- formValues[element.name] = element.value;
- }
- }
- console.log(formValues);
- var stringifiedForm = JSON.stringify(formValues);
- console.log(stringifiedForm);
- $.ajax({
- type : "POST",
- url : "http://localhost:23324/apex/RESTConsumer/EventIn",
- data : stringifiedForm,
- crossDomain : true,
- contentType : "application/json; charset=utf-8",
- success : function(data) {
- alert("Answers Set Successfully !!!");
- },
- failure : function(errMsg) {
- alert(errMsg);
- }
- });
- e.preventDefault(); //STOP default action
-
- });
- });
-</script>
-<script>
- $(document).ready(function() {
- $("#modepost").click(function(e) {
- var elements = document.getElementById("modeform").elements;
-
- var formValues = new Object;
- formValues["name"] = "MakeDecisionEvent";
- for (var i = 0, element; element = elements[i++];) {
- if (element.type === "radio" && element.checked) {
- formValues[element.name] = element.value;
- }
- }
- console.log(formValues);
- var stringifiedForm = JSON.stringify(formValues);
- console.log(stringifiedForm);
- $.ajax({
- type : "POST",
- url : "http://localhost:23324/apex/RESTConsumer/EventIn",
- data : stringifiedForm,
- crossDomain : true,
- contentType : "application/json; charset=utf-8",
- success : function(data) {
- alert("Decision Taken: " + data.decision);
- },
- failure : function(errMsg) {
- alert(errMsg);
- }
- });
- e.preventDefault(); //STOP default action
-
- });
- });
-</script>
-</head>
-<body>
- <h3>Decision Maker Answers</h3>
- <form name="answerform" id="answerform" method="POST">
- <table>
- <tr>
- <td>First Answer:</td>
- <td><input type="text" name="a0" value="Never Ever" /></td>
- </tr>
- <tr>
- <td>Second Answer:</td>
- <td><input type="text" name="a1" value="No" /></td>
- </tr>
- <tr>
- <td>Third Answer:</td>
- <td><input type="text" name="a2" value="Maybe not" /></td>
- </tr>
- <tr>
- <td>Fourth Answer</td>
- <td><input type="text" name="a3" value="Wait" /></td>
- </tr>
- <tr>
- <td>Fifth Answer:</td>
- <td><input type="text" name="a4" value="Maybe" /></td>
- </tr>
- <tr>
- <td>Sixth Answer:</td>
- <td><input type="text" name="a5" value="Yes" /></td>
- </tr>
- <tr>
- <td>Seventh Answer:</td>
- <td><input type="text" name="a6" value="Absolutely" /></td>
- </tr>
- <tr>
- <td />
- <td><input type="button" class="btn btn-info" id="answerspost"
- value="Set Answers"></td>
- </tr>
- </table>
- </form>
- <h3>Decision Maker Mode</h3>
- <form name="modeform" id="modeform" method="POST">
- <table>
- <tr>
- <td><input name="mode" type="radio" value="random"
- checked="checked">random</td>
- <td><input name="mode" type="radio" value="pessimistic">pessimistic</td>
- <td><input name="mode" type="radio" value="optimistic">
- optimistic</td>
- <td><input name="mode" type="radio" value="dithering">dithering</td>
- <td><input name="mode" type="radio" value="roundrobin">round
- robin</td>
- </tr>
- <tr>
- <td />
- <td />
- <td />
- <td />
- <td><input type="button" class="btn btn-info" id="modepost"
- value="Make Decision"></td>
- </tr>
- </table>
- </form>
-</body>
-</html>
diff --git a/packages/apex-pdp-package-full/src/main/package/examples/html/DecisionMaker/MakeDecision_Client.html b/packages/apex-pdp-package-full/src/main/package/examples/html/DecisionMaker/MakeDecision_Client.html
deleted file mode 100644
index f7a3f0c5b..000000000
--- a/packages/apex-pdp-package-full/src/main/package/examples/html/DecisionMaker/MakeDecision_Client.html
+++ /dev/null
@@ -1,153 +0,0 @@
-<!--
- ============LICENSE_START=======================================================
- Copyright (C) 2016-2018 Ericsson. All rights reserved.
- ================================================================================
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-
- SPDX-License-Identifier: Apache-2.0
- ============LICENSE_END=========================================================
--->
-
-<!-- http://localhost:3904/events/toApex -->
-
-<html>
-<head>
-<script src="http://code.jquery.com/jquery-latest.js"></script>
-<script>
- $(document).ready(function() {
- $("#answerspost").click(function(e) {
- var elements = document.getElementById("answerform").elements;
-
- var formValues = new Object;
- formValues["name"] = "AnswerEvent";
- for (var i = 0, element; element = elements[i++];) {
- if (element.type === "text" && element.value != "") {
- formValues[element.name] = element.value;
- }
- }
- console.log(formValues);
- var stringifiedForm = JSON.stringify(formValues);
- console.log(stringifiedForm);
- $.ajax({
- type : "POST",
- url : "http://localhost:3904/events/toApex",
- data : stringifiedForm,
- crossDomain : true,
- contentType : "application/json; charset=utf-8",
- success : function(data) {
- alert("Answers Set Successfully !!!");
- },
- failure : function(errMsg) {
- alert(errMsg);
- }
- });
- e.preventDefault(); //STOP default action
-
- });
- });
-</script>
-<script>
- $(document).ready(function() {
- $("#modepost").click(function(e) {
- var elements = document.getElementById("modeform").elements;
-
- var formValues = new Object;
- formValues["name"] = "MakeDecisionEvent";
- for (var i = 0, element; element = elements[i++];) {
- if (element.type === "radio" && element.checked) {
- formValues[element.name] = element.value;
- }
- }
- console.log(formValues);
- var stringifiedForm = JSON.stringify(formValues);
- console.log(stringifiedForm);
- $.ajax({
- type : "POST",
- url : "http://localhost:3904/events/toApex",
- data : stringifiedForm,
- crossDomain : true,
- contentType : "application/json; charset=utf-8",
- success : function(data) {
- alert("Decision Taken: " + data.decision);
- },
- failure : function(errMsg) {
- alert(errMsg);
- }
- });
- e.preventDefault(); //STOP default action
-
- });
- });
-</script>
-</head>
-<body>
- <h3>Decision Maker Answers</h3>
- <form name="answerform" id="answerform" method="POST">
- <table>
- <tr>
- <td>First Answer:</td>
- <td><input type="text" name="a0" value="Never Ever" /></td>
- </tr>
- <tr>
- <td>Second Answer:</td>
- <td><input type="text" name="a1" value="No" /></td>
- </tr>
- <tr>
- <td>Third Answer:</td>
- <td><input type="text" name="a2" value="Maybe not" /></td>
- </tr>
- <tr>
- <td>Fourth Answer</td>
- <td><input type="text" name="a3" value="Wait" /></td>
- </tr>
- <tr>
- <td>Fifth Answer:</td>
- <td><input type="text" name="a4" value="Maybe" /></td>
- </tr>
- <tr>
- <td>Sixth Answer:</td>
- <td><input type="text" name="a5" value="Yes" /></td>
- </tr>
- <tr>
- <td>Seventh Answer:</td>
- <td><input type="text" name="a6" value="Absolutely" /></td>
- </tr>
- <tr>
- <td />
- <td><input type="button" class="btn btn-info" id="answerspost"
- value="Set Answers"></td>
- </tr>
- </table>
- </form>
- <h3>Decision Maker Mode</h3>
- <form name="modeform" id="modeform" method="POST">
- <table>
- <tr>
- <td><input name="mode" type="radio" value="random"
- checked="checked">random</td>
- <td><input name="mode" type="radio" value="pessimistic">pessimistic</td>
- <td><input name="mode" type="radio" value="optimistic">
- optimistic</td>
- <td><input name="mode" type="radio" value="dithering">dithering</td>
- </tr>
- <tr>
- <td />
- <td />
- <td />
- <td><input type="button" class="btn btn-info" id="modepost"
- value="Make Decision"></td>
- </tr>
- </table>
- </form>
-</body>
-</html>
diff --git a/packages/apex-pdp-package-full/src/main/package/examples/html/DecisionMaker/MakeDecision_Server.html b/packages/apex-pdp-package-full/src/main/package/examples/html/DecisionMaker/MakeDecision_Server.html
deleted file mode 100644
index 4c8f311af..000000000
--- a/packages/apex-pdp-package-full/src/main/package/examples/html/DecisionMaker/MakeDecision_Server.html
+++ /dev/null
@@ -1,153 +0,0 @@
-<!--
- ============LICENSE_START=======================================================
- Copyright (C) 2016-2018 Ericsson. All rights reserved.
- ================================================================================
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-
- SPDX-License-Identifier: Apache-2.0
- ============LICENSE_END=========================================================
--->
-
-<!-- http://localhost:23324/apex/eventInput/EventIn -->
-
-<html>
-<head>
-<script src="http://code.jquery.com/jquery-latest.js"></script>
-<script>
- $(document).ready(function() {
- $("#answerspost").click(function(e) {
- var elements = document.getElementById("answerform").elements;
-
- var formValues = new Object;
- formValues["name"] = "AnswerEvent";
- for (var i = 0, element; element = elements[i++];) {
- if (element.type === "text" && element.value != "") {
- formValues[element.name] = element.value;
- }
- }
- console.log(formValues);
- var stringifiedForm = JSON.stringify(formValues);
- console.log(stringifiedForm);
- $.ajax({
- type : "POST",
- url : "http://localhost:23324/apex/RESTConsumer/EventIn",
- data : stringifiedForm,
- crossDomain : true,
- contentType : "application/json; charset=utf-8",
- success : function(data) {
- alert("Answers Set Successfully !!!");
- },
- failure : function(errMsg) {
- alert(errMsg);
- }
- });
- e.preventDefault(); //STOP default action
-
- });
- });
-</script>
-<script>
- $(document).ready(function() {
- $("#modepost").click(function(e) {
- var elements = document.getElementById("modeform").elements;
-
- var formValues = new Object;
- formValues["name"] = "MakeDecisionEvent";
- for (var i = 0, element; element = elements[i++];) {
- if (element.type === "radio" && element.checked) {
- formValues[element.name] = element.value;
- }
- }
- console.log(formValues);
- var stringifiedForm = JSON.stringify(formValues);
- console.log(stringifiedForm);
- $.ajax({
- type : "POST",
- url : "http://localhost:23324/apex/RESTConsumer/EventIn",
- data : stringifiedForm,
- crossDomain : true,
- contentType : "application/json; charset=utf-8",
- success : function(data) {
- alert("Decision Taken: " + data.decision);
- },
- failure : function(errMsg) {
- alert(errMsg);
- }
- });
- e.preventDefault(); //STOP default action
-
- });
- });
-</script>
-</head>
-<body>
- <h3>Decision Maker Answers</h3>
- <form name="answerform" id="answerform" method="POST">
- <table>
- <tr>
- <td>First Answer:</td>
- <td><input type="text" name="a0" value="Never Ever" /></td>
- </tr>
- <tr>
- <td>Second Answer:</td>
- <td><input type="text" name="a1" value="No" /></td>
- </tr>
- <tr>
- <td>Third Answer:</td>
- <td><input type="text" name="a2" value="Maybe not" /></td>
- </tr>
- <tr>
- <td>Fourth Answer</td>
- <td><input type="text" name="a3" value="Wait" /></td>
- </tr>
- <tr>
- <td>Fifth Answer:</td>
- <td><input type="text" name="a4" value="Maybe" /></td>
- </tr>
- <tr>
- <td>Sixth Answer:</td>
- <td><input type="text" name="a5" value="Yes" /></td>
- </tr>
- <tr>
- <td>Seventh Answer:</td>
- <td><input type="text" name="a6" value="Absolutely" /></td>
- </tr>
- <tr>
- <td />
- <td><input type="button" class="btn btn-info" id="answerspost"
- value="Set Answers"></td>
- </tr>
- </table>
- </form>
- <h3>Decision Maker Mode</h3>
- <form name="modeform" id="modeform" method="POST">
- <table>
- <tr>
- <td><input name="mode" type="radio" value="random"
- checked="checked">random</td>
- <td><input name="mode" type="radio" value="pessimistic">pessimistic</td>
- <td><input name="mode" type="radio" value="optimistic">
- optimistic</td>
- <td><input name="mode" type="radio" value="dithering">dithering</td>
- </tr>
- <tr>
- <td />
- <td />
- <td />
- <td><input type="button" class="btn btn-info" id="modepost"
- value="Make Decision"></td>
- </tr>
- </table>
- </form>
-</body>
-</html>