catalog-be servlets refactoring
[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 import javax.inject.Inject;
31
32 @Component
33 public class ComponentBusinessLogicProvider {
34
35     private final ResourceBusinessLogic resourceBusinessLogic;
36     private final ServiceBusinessLogic serviceBusinessLogic;
37     private final ProductBusinessLogic productBusinessLogic;
38
39     @Inject
40     public ComponentBusinessLogicProvider(ResourceBusinessLogic resourceBusinessLogic, ServiceBusinessLogic serviceBusinessLogic, ProductBusinessLogic productBusinessLogic) {
41         this.resourceBusinessLogic = resourceBusinessLogic;
42         this.serviceBusinessLogic = serviceBusinessLogic;
43         this.productBusinessLogic = productBusinessLogic;
44     }
45
46     public ComponentBusinessLogic getInstance(ComponentTypeEnum componentTypeEnum) {
47         switch (componentTypeEnum) {
48             case SERVICE:
49                return serviceBusinessLogic;
50             case PRODUCT:
51                return productBusinessLogic;
52             case RESOURCE:
53             case RESOURCE_INSTANCE:
54                return resourceBusinessLogic;
55             default:
56                 BeEcompErrorManager.getInstance().logBeSystemError("getComponentBL");
57                 throw new ByActionStatusComponentException(ActionStatus.INVALID_CONTENT_PARAM, componentTypeEnum.getValue());
58         }
59     }
60
61 }