Catalog alignment
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / components / impl / ComponentBusinessLogicProvider.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
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  * Modifications copyright (c) 2019 Nokia
20  * ================================================================================
21  */
22 package org.openecomp.sdc.be.components.impl;
23
24 import org.openecomp.sdc.be.components.impl.exceptions.ByActionStatusComponentException;
25 import org.openecomp.sdc.be.config.BeEcompErrorManager;
26 import org.openecomp.sdc.be.dao.api.ActionStatus;
27 import org.openecomp.sdc.be.datatypes.enums.ComponentTypeEnum;
28 import org.springframework.stereotype.Component;
29
30 @Component
31 public class ComponentBusinessLogicProvider {
32
33     private final ResourceBusinessLogic resourceBusinessLogic;
34     private final ServiceBusinessLogic serviceBusinessLogic;
35     private final ProductBusinessLogic productBusinessLogic;
36
37     public ComponentBusinessLogicProvider(ResourceBusinessLogic resourceBusinessLogic, ServiceBusinessLogic serviceBusinessLogic, ProductBusinessLogic productBusinessLogic) {
38         this.resourceBusinessLogic = resourceBusinessLogic;
39         this.serviceBusinessLogic = serviceBusinessLogic;
40         this.productBusinessLogic = productBusinessLogic;
41     }
42
43     public ComponentBusinessLogic getInstance(ComponentTypeEnum componentTypeEnum) {
44         switch (componentTypeEnum) {
45             case SERVICE:
46                return serviceBusinessLogic;
47             case PRODUCT:
48                return productBusinessLogic;
49             case RESOURCE:
50             case RESOURCE_INSTANCE:
51                return resourceBusinessLogic;
52             default:
53                 BeEcompErrorManager.getInstance().logBeSystemError("getComponentBL");
54                 throw new ByActionStatusComponentException(ActionStatus.INVALID_CONTENT, componentTypeEnum.getValue());
55         }
56     }
57
58 }