Format Java code with respect to ONAP Code Style
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / workflow / CreateAAIOwningEntityManager.java
1 /**
2  * Copyright (c) 2019 Orange
3  * <p>
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
5  * the License. You may obtain a copy of the License at
6  * <p>
7  * http://www.apache.org/licenses/LICENSE-2.0
8  * <p>
9  * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
10  * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
11  * specific language governing permissions and limitations under the License.
12  */
13
14 package org.onap.nbi.apis.serviceorder.workflow;
15
16 import org.onap.nbi.apis.serviceorder.MultiClient;
17 import org.onap.nbi.apis.serviceorder.model.ServiceOrder;
18 import org.onap.nbi.apis.serviceorder.model.StateType;
19 import org.onap.nbi.apis.serviceorder.model.orchestrator.ServiceOrderInfo;
20 import org.onap.nbi.apis.serviceorder.service.ServiceOrderService;
21 import org.slf4j.Logger;
22 import org.slf4j.LoggerFactory;
23 import org.springframework.beans.factory.annotation.Autowired;
24 import org.springframework.beans.factory.annotation.Value;
25 import org.springframework.stereotype.Service;
26
27 @Service
28 public class CreateAAIOwningEntityManager {
29
30     @Autowired
31     private MultiClient serviceOrderConsumerService;
32
33     @Autowired
34     ServiceOrderService serviceOrderService;
35
36     @Value("${so.owning.entity.id}")
37     private String owningEntityId;
38
39     private static final Logger LOGGER = LoggerFactory.getLogger(CreateAAIOwningEntityManager.class);
40
41     public void createAAIOwningEntity(ServiceOrder serviceOrder, ServiceOrderInfo serviceOrderInfo) {
42
43         String owningEntityIdToSo = serviceOrderConsumerService.getOwningEntityIdInAAI(serviceOrder);
44         if (owningEntityIdToSo == null) {
45             owningEntityIdToSo = owningEntityId;
46             boolean owningEntity = serviceOrderConsumerService.putOwningEntity(serviceOrder);
47             if (!owningEntity) {
48                 serviceOrderService.updateOrderState(serviceOrder, StateType.REJECTED);
49                 LOGGER.warn("serviceOrder {} rejected : cannot create owning entity ", serviceOrder.getId());
50                 serviceOrderService.addOrderMessage(serviceOrder, "501");
51             }
52         }
53         serviceOrderInfo.setOwningEntityId(owningEntityIdToSo);
54     }
55
56 }