APEX standalone support for ToscaPolicy format
[policy/apex-pdp.git] / examples / examples-decisionmaker / src / test / java / org / onap / policy / apex / examples / decisionmaker / DecisionMakerRunner.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  Modifications Copyright (C) 2020 Bell Canada. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.apex.examples.decisionmaker;
23
24 import org.onap.policy.apex.auth.clieditor.tosca.ApexCliToscaEditorMain;
25 import org.onap.policy.apex.core.infrastructure.threading.ThreadUtilities;
26 import org.onap.policy.apex.model.basicmodel.concepts.ApexException;
27 import org.onap.policy.apex.service.engine.main.ApexMain;
28
29 /**
30  * Main method to run the decision maker example.
31  */
32 public class DecisionMakerRunner {
33
34     private DecisionMakerRunner() throws ApexException {
35
36         // @formatter:off
37         final String[] cliArgs = new String[] {
38             "-c",
39             "src/main/resources/policy/DecisionMakerPolicyModel.apex",
40             "-l",
41             "target/DecisionMakerPolicy.log",
42             "-ac",
43             "src/main/resources/examples/config/DecisionMaker/ApexConfigRESTServerNoModel.json",
44             "-t",
45             "src/main/resources/tosca/ToscaTemplate.json",
46             "-ot",
47             "target/classes/DecisionMakerPolicy.json"
48         };
49         // @formatter:on
50
51         new ApexCliToscaEditorMain(cliArgs);
52
53         // @formatter:off
54         final String[] apexArgs = {
55             "-rfr",
56             "target/classes",
57             "-p",
58             "target/classes/DecisionMakerPolicy.json"
59         };
60         // @formatter:on
61
62         final ApexMain apexMain = new ApexMain(apexArgs);
63
64         ThreadUtilities.sleep(1000000);
65         apexMain.shutdown();
66     }
67
68     public static void main(String[] args) throws ApexException {
69         new DecisionMakerRunner();
70     }
71 }