summaryrefslogtreecommitdiffstats
path: root/asdctool/src/main/java/org/openecomp/sdc/asdctool/migration/config/mocks/HealthCheckBusinessLogicMock.java
blob: c7ef45e7122fb71621eb33b7c89212895ab94b8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.openecomp.sdc.asdctool.migration.config.mocks;

import org.openecomp.sdc.be.components.health.HealthCheckBusinessLogic;
import org.springframework.stereotype.Component;

import javax.annotation.PostConstruct;

@Component("healthCheckBusinessLogic")
public class HealthCheckBusinessLogicMock extends HealthCheckBusinessLogic {

    @Override
    @PostConstruct
    public void init() {

    }

    @Override
    protected void destroy() {

    }
}