CheckStyle corrections only
[appc.git] / appc-config / appc-flow-controller / provider / src / main / java / org / onap / appc / flow / controller / node / FlowGenerator.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * =============================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.appc.flow.controller.node;
24
25 import com.att.eelf.configuration.EELFLogger;
26 import com.att.eelf.configuration.EELFManager;
27 import java.util.ArrayList;
28 import java.util.List;
29 import java.util.Map;
30 import org.onap.appc.flow.controller.data.Response;
31 import org.onap.appc.flow.controller.data.ResponseAction;
32 import org.onap.appc.flow.controller.data.Transaction;
33 import org.onap.appc.flow.controller.data.Transactions;
34 import org.onap.appc.flow.controller.utils.FlowControllerConstants;
35 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
36
37 public class FlowGenerator {
38     
39     private static final  EELFLogger log = EELFManager.getInstance().getLogger(FlowGenerator.class);
40
41     public Transactions createSingleStepModel(Map<String, String> inParams, SvcLogicContext ctx) {
42
43         log.debug("Starting generating single Step flow" );
44         log.debug("Data in context"  + ctx.getAttributeKeySet() );
45
46         Transaction singleTransaction = new Transaction();
47         singleTransaction.setTransactionId(1);
48         singleTransaction.setAction(ctx.getAttribute(FlowControllerConstants.REQUEST_ACTION));
49         //Need to discuss how to get action level if not in request
50         singleTransaction.setActionLevel(FlowControllerConstants.VNF);
51         singleTransaction.setPayload(ctx.getAttribute(FlowControllerConstants.PAYLOAD));
52         singleTransaction.setActionLevel(ctx.getAttribute(FlowControllerConstants.ACTION_LEVEL));
53
54         List<Response> responseList  = new ArrayList<>();
55         Response response = new Response();
56                 
57         ResponseAction ra = new ResponseAction();                    
58         ra.setStop(true);
59         response.setResponseAction(ra);
60         
61         responseList.add(response);
62         singleTransaction.setResponses(responseList);
63
64         List<Transaction> transactionList = new ArrayList<>();
65         transactionList.add(singleTransaction);
66
67         Transactions transactions = new Transactions();
68         transactions.setTransactions(transactionList);
69
70         log.debug("FlowGenerator.createSingleStepModel Sequence String" + transactions.toString());
71         
72         return transactions;
73     }
74 }