Update java files with correct license text
[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 java.util.ArrayList;
26 import java.util.List;
27 import java.util.Map;
28
29 import org.onap.appc.flow.controller.data.Response;
30 import org.onap.appc.flow.controller.data.ResponseAction;
31 import org.onap.appc.flow.controller.data.Transaction;
32 import org.onap.appc.flow.controller.data.Transactions;
33 import org.onap.appc.flow.controller.utils.FlowControllerConstants;
34 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
35
36 import com.att.eelf.configuration.EELFLogger;
37 import com.att.eelf.configuration.EELFManager;
38
39 public class FlowGenerator {
40     
41     private static final  EELFLogger log = EELFManager.getInstance().getLogger(FlowGenerator.class);
42
43     public Transactions createSingleStepModel(Map<String, String> inParams, SvcLogicContext ctx) {
44
45         String fn = "FlowGenerator.createSingleStepModel";
46         log.debug("Starting generating single Step flow" );
47         
48         log.debug("Data in context"  + ctx.getAttributeKeySet() );
49         Transactions transactions  = new Transactions();
50         List<Transaction> transactionList = new ArrayList<>();
51         Transaction singleTransaction = new Transaction();        
52         
53         singleTransaction.setTransactionId(1);
54         singleTransaction.setAction(ctx.getAttribute(FlowControllerConstants.REQUEST_ACTION));
55         singleTransaction.setActionLevel(FlowControllerConstants.VNF); //Need to discuss how to get action level if not in request
56         singleTransaction.setPayload(ctx.getAttribute(FlowControllerConstants.PAYLOAD));
57         singleTransaction.setActionLevel(ctx.getAttribute(FlowControllerConstants.ACTION_LEVEL));
58
59         List<Response> responseList  = new ArrayList<>();
60         Response response = new Response();
61                 
62         ResponseAction ra = new ResponseAction();                    
63         ra.setStop(true);
64         response.setResponseAction(ra);
65         
66         responseList.add(response);
67         singleTransaction.setResponses(responseList);        
68         transactionList.add(singleTransaction);
69         
70         transactions.setTransactions(transactionList);
71
72         log.debug(fn + " Sequence String" + transactions.toString());
73         
74         return transactions;
75     }
76     
77     
78
79 }