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

import org.openecomp.sdc.notification.dao.SubscribersDao;
import org.openecomp.sdc.notification.dao.impl.SubscribersDaoCassandraImpl;
import org.openecomp.sdc.notification.factories.SubscribersDaoFactory;


public class SubscribersDaoFactoryImpl extends SubscribersDaoFactory {
    private static final SubscribersDao INSTANCE = new SubscribersDaoCassandraImpl();

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