Format Java code with respect to ONAP Code Style
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / workflow / CreateAAICustomerManager.java
1 /**
2  * Copyright (c) 2018 Orange
3  *
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  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
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.stereotype.Service;
25
26 @Service
27 public class CreateAAICustomerManager {
28
29     @Autowired
30     private MultiClient serviceOrderConsumerService;
31
32     @Autowired
33     ServiceOrderService serviceOrderService;
34
35     private static final Logger LOGGER = LoggerFactory.getLogger(CreateAAICustomerManager.class);
36
37     public void createAAICustomer(ServiceOrder serviceOrder, ServiceOrderInfo serviceOrderInfo) {
38
39         if (serviceOrderInfo.isUseServiceOrderCustomer() && serviceOrderInfo.isAllItemsInAdd()
40                 && !serviceOrderConsumerService.isCustomerPresentInAAI(
41                         serviceOrderInfo.getSubscriberInfo().getGlobalSubscriberId(), serviceOrder)) {
42
43             boolean customerCreated =
44                     serviceOrderConsumerService.putCustomer(serviceOrderInfo.getSubscriberInfo(), serviceOrder);
45             if (!customerCreated) {
46                 serviceOrderService.updateOrderState(serviceOrder, StateType.REJECTED);
47                 LOGGER.warn("serviceOrder {} rejected : cannot create customer", serviceOrder.getId());
48                 serviceOrderService.addOrderMessage(serviceOrder, "501");
49             }
50         }
51     }
52
53 }