Sonar clean code
[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 package org.onap.nbi.apis.serviceorder.workflow;
14
15 import java.util.Date;
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.repositories.ServiceOrderRepository;
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
30     @Autowired
31     private MultiClient serviceOrderConsumerService;
32
33     @Autowired
34     ServiceOrderRepository serviceOrderRepository;
35
36     private static final Logger LOGGER = LoggerFactory.getLogger(CreateAAICustomerManager.class);
37
38
39
40     public void createAAICustomer(ServiceOrder serviceOrder,
41         ServiceOrderInfo serviceOrderInfo) {
42
43         if (serviceOrderInfo.isUseServiceOrderCustomer() && serviceOrderInfo.isAllItemsInAdd()
44             && !serviceOrderConsumerService
45             .isCustomerPresentInAAI(serviceOrderInfo.getSubscriberInfo().getGlobalSubscriberId())) {
46
47             boolean customerCreated = serviceOrderConsumerService.putCustomer(serviceOrderInfo.getSubscriberInfo());
48             if (!customerCreated) {
49                 serviceOrder.setState(StateType.REJECTED);
50                 serviceOrder.setCompletionDateTime(new Date());
51                 serviceOrderRepository.save(serviceOrder);
52                 LOGGER.warn("serviceOrder {} rejected : cannot create customer", serviceOrder.getId());
53             }
54         }
55     }
56
57
58 }
59
60