summaryrefslogtreecommitdiffstats
path: root/examples/examples-decisionmaker/src/main/resources/logic
diff options
context:
space:
mode:
authorliamfallon <liam.fallon@est.tech>2018-12-19 17:48:47 +0000
committerLiam Fallon <liam.fallon@est.tech>2019-01-07 15:37:03 +0000
commitb60f265ae3fc2246a77a9f66836f6d45dfc5dfd2 (patch)
tree20f2e7d5ad0107ba814bc5b0a2f7e455007dcf8c /examples/examples-decisionmaker/src/main/resources/logic
parent43037b6e94c063d8be0d3ebaa8bc729b30334ff1 (diff)
Add example policy for HTTPS
Added an example of how to configure HTTPS for an Apex policy. Issue-ID: POLICY-1222 Change-Id: Iea8a8accac32f6d25c64a8324e202ad5e6221c7a Signed-off-by: liamfallon <liam.fallon@est.tech> (cherry picked from commit 1dff5ebe27cbe79de8f9d798e256d41ecccdaa8c)
Diffstat (limited to 'examples/examples-decisionmaker/src/main/resources/logic')
-rw-r--r--examples/examples-decisionmaker/src/main/resources/logic/HealthCheckTask.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/examples/examples-decisionmaker/src/main/resources/logic/HealthCheckTask.js b/examples/examples-decisionmaker/src/main/resources/logic/HealthCheckTask.js
new file mode 100644
index 000000000..ebc0e6387
--- /dev/null
+++ b/examples/examples-decisionmaker/src/main/resources/logic/HealthCheckTask.js
@@ -0,0 +1,26 @@
+/*
+ * ============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=========================================================
+ */
+
+executor.logger.info(executor.subject.id);
+executor.logger.info(executor.inFields);
+
+executor.logger.info(executor.outFields);
+
+var returnValue = executor.isTrue;