Second part of onap rename
[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 : APP-C
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  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.appc.flow.controller.node;
22
23 import java.util.ArrayList;
24 import java.util.List;
25 import java.util.Map;
26
27 import org.onap.appc.flow.controller.data.Response;
28 import org.onap.appc.flow.controller.data.ResponseAction;
29 import org.onap.appc.flow.controller.data.Transaction;
30 import org.onap.appc.flow.controller.data.Transactions;
31 import org.onap.appc.flow.controller.utils.FlowControllerConstants;
32 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
33
34 import com.att.eelf.configuration.EELFLogger;
35 import com.att.eelf.configuration.EELFManager;
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         String fn = "FlowGenerator.createSingleStepModel";
44         log.debug("Starting generating single Step flow" );
45         
46         log.debug("Data in context"  + ctx.getAttributeKeySet() );
47         Transactions transactions  = new Transactions();
48         List<Transaction> transactionList = new ArrayList<Transaction>();            
49         Transaction singleTransaction = new Transaction();        
50         
51         singleTransaction.setTransactionId(1);
52         singleTransaction.setAction(ctx.getAttribute(FlowControllerConstants.REQUEST_ACTION));
53         singleTransaction.setActionLevel(FlowControllerConstants.VNF); //Need to discuss how to get action level if not in request
54         singleTransaction.setPayload(ctx.getAttribute(FlowControllerConstants.PAYLOAD));
55         singleTransaction.setActionLevel(ctx.getAttribute(FlowControllerConstants.ACTION_LEVEL));
56
57         
58         
59         
60         List<Response> responseList  = new ArrayList<Response>();                
61         Response response = new Response();
62                 
63         ResponseAction ra = new ResponseAction();                    
64         ra.setStop(true);
65         response.setResponseAction(ra);
66         
67         responseList.add(response);
68         singleTransaction.setResponses(responseList);        
69         transactionList.add(singleTransaction);
70         
71         transactions.setTransactions(transactionList);
72
73         log.debug("Sequence String" + transactions.toString());
74         
75         return transactions;
76     }
77     
78     
79
80 }