summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ComponentBusinessLogicProvider.java
blob: 302508423949ca9812d8a60be80d2f27c9c2fbe1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package org.openecomp.sdc.be.components.impl;

import org.openecomp.sdc.be.components.impl.exceptions.ComponentException;
import org.openecomp.sdc.be.config.BeEcompErrorManager;
import org.openecomp.sdc.be.dao.api.ActionStatus;
import org.openecomp.sdc.be.datatypes.enums.ComponentTypeEnum;
import org.springframework.stereotype.Component;

@Component
public class ComponentBusinessLogicProvider {

    private final ResourceBusinessLogic resourceBusinessLogic;
    private final ServiceBusinessLogic serviceBusinessLogic;
    private final ProductBusinessLogic productBusinessLogic;

    public ComponentBusinessLogicProvider(ResourceBusinessLogic resourceBusinessLogic, ServiceBusinessLogic serviceBusinessLogic, ProductBusinessLogic productBusinessLogic) {
        this.resourceBusinessLogic = resourceBusinessLogic;
        this.serviceBusinessLogic = serviceBusinessLogic;
        this.productBusinessLogic = productBusinessLogic;
    }

    public ComponentBusinessLogic getInstance(ComponentTypeEnum componentTypeEnum) {
        switch (componentTypeEnum) {
            case SERVICE:
               return serviceBusinessLogic;
            case PRODUCT:
               return productBusinessLogic;
            case RESOURCE:
            case RESOURCE_INSTANCE:
               return resourceBusinessLogic;
            default:
                BeEcompErrorManager.getInstance().logBeSystemError("getComponentBL");
                throw new ComponentException(ActionStatus.INVALID_CONTENT_PARAM, componentTypeEnum.getValue());
        }
    }

}