aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-core/src/main/java/org/openecomp/sdc/notification/factories/impl/PropagationServiceFactoryImpl.java
blob: e5987fe266d0644910f3e2f9164b05d0cf9fe8c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.openecomp.sdc.notification.factories.impl;

import org.openecomp.sdc.notification.factories.NotificationsDaoFactory;
import org.openecomp.sdc.notification.factories.PropagationServiceFactory;
import org.openecomp.sdc.notification.services.PropagationService;
import org.openecomp.sdc.notification.services.impl.PropagationServiceImpl;

public class PropagationServiceFactoryImpl extends PropagationServiceFactory {
    private static final PropagationService INSTANCE = new PropagationServiceImpl(
            NotificationsDaoFactory.getInstance().createInterface());

    @Override
    public PropagationService createInterface() {
        return INSTANCE;
    }
}