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