Containerization feature of SO
[so.git] / bpmn / so-bpmn-infrastructure-common / src / main / java / org / onap / so / bpmn / infrastructure / workflow / serviceTask / SdncUnderlayVpnPreprocessTask.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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.so.bpmn.infrastructure.workflow.serviceTask;
22
23 import org.apache.commons.lang3.StringUtils;
24 import org.camunda.bpm.engine.delegate.DelegateExecution;
25 import org.onap.so.bpmn.core.BaseTask;
26 import org.onap.so.db.request.beans.ResourceOperationStatus;
27 import org.onap.so.db.request.beans.ResourceOperationStatusId;
28 import org.onap.so.db.request.data.repository.ResourceOperationStatusRepository;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.stereotype.Component;
31
32 @Component
33 public class SdncUnderlayVpnPreprocessTask extends BaseTask {
34     public static final String RESOURCE_OPER_TYPE = "resourceOperType";
35
36     @Override
37     public void execute(DelegateExecution execution) {
38         String operType = getOperType(execution);
39         execution.setVariable(RESOURCE_OPER_TYPE, operType);
40     }
41
42     private String getOperType(DelegateExecution execution) {
43         String serviceId = (String) execution.getVariable("serviceId");
44         serviceId = StringUtils.isBlank(serviceId) ? (String) execution.getVariable("serviceInstanceId") : serviceId;
45         String operationId = (String) execution.getVariable("operationId");
46         String resourceTemplateUUID = (String) execution.getVariable("resourceTemplateUUID");
47         resourceTemplateUUID = StringUtils.isBlank(resourceTemplateUUID) ? (String) execution.getVariable("resourceTemplateId") : resourceTemplateUUID;
48         ResourceOperationStatus resourceOperationStatus = new ResourceOperationStatus();//rosRepo.getOne(new ResourceOperationStatusId(serviceId, operationId, resourceTemplateUUID));
49         return resourceOperationStatus.getOperType();
50     }
51 }