Changed to unmaintained
[appc.git] / appc-config / appc-flow-controller / provider / src / main / java / org / onap / appc / flow / controller / node / TransactionHandler.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2018 Nokia. All rights reserved.
6  * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
7  * =============================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.appc.flow.controller.node;
22
23 import static org.onap.appc.flow.controller.utils.FlowControllerConstants.INPUT_REQUEST_ACTION;
24 import static org.onap.appc.flow.controller.utils.FlowControllerConstants.INPUT_REQUEST_ACTION_TYPE;
25 import static org.onap.appc.flow.controller.utils.FlowControllerConstants.REST_USER;
26 import static org.onap.appc.flow.controller.utils.FlowControllerConstants.REST_PWD;
27
28 import org.apache.commons.lang3.StringUtils;
29 import org.onap.appc.flow.controller.data.Transaction;
30 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
31
32 /**
33  * Helper class for RestServiceNode
34  */
35 class TransactionHandler {
36
37   Transaction buildTransaction(SvcLogicContext ctx, String resourceUri)
38       throws Exception {
39
40     String inputRequestAction = ctx.getAttribute(INPUT_REQUEST_ACTION);
41     String inputRequestActionType = ctx.getAttribute(INPUT_REQUEST_ACTION_TYPE);
42
43     if (StringUtils.isBlank(inputRequestActionType)) {
44       throw new Exception("Don't know REST operation for Action " + inputRequestActionType);
45     }
46     if (StringUtils.isBlank(inputRequestAction)) {
47       throw new Exception("Don't know request-action " + INPUT_REQUEST_ACTION);
48     }
49
50     Transaction transaction = new Transaction();
51     transaction.setExecutionEndPoint(resourceUri);
52     transaction.setExecutionRPC(inputRequestActionType);
53     transaction.setAction(INPUT_REQUEST_ACTION);
54
55
56     transaction.setuId(ctx.getAttribute(REST_USER));
57     transaction.setPswd(ctx.getAttribute(REST_PWD));
58
59     return transaction;
60   }
61
62 }