bp-gen code clone from cli repo
[dcaegen2/platform.git] / mod / bpgenerator / src / main / java / org / onap / blueprintgenerator / core / PolicyCommand.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.blueprintgenerator.core;
22
23 import org.onap.blueprintgenerator.models.componentspec.ComponentSpec;
24 import org.onap.blueprintgenerator.models.policymodel.PolicyModel;
25 import picocli.CommandLine.Command;
26 import picocli.CommandLine.Option;
27
28 @Command(name = "policy", description = "Command used to generate policy model from component spec")
29 public class PolicyCommand implements Runnable{
30     @Option(names = {"-i", "--component-spec"}, description = "Path to component spec file", required = true)
31     private String componentSpecPath;
32
33     @Option(names = {"-p", "--model-path"}, description = "Path to directory that models are output to", required = true)
34     private String modelOutputPath;
35
36     @Override
37     public void run() {
38         ComponentSpec inboundComponentSpec = new ComponentSpec();
39         inboundComponentSpec.createComponentSpecFromFile(componentSpecPath);
40         new PolicyModel().createPolicyModels(inboundComponentSpec, this.modelOutputPath);
41     }
42 }