Add collaboration feature
[sdc.git] / openecomp-be / lib / openecomp-sdc-notification-lib / openecomp-sdc-notification-core / src / main / java / org / openecomp / sdc / notification / factories / impl / SubscribersDaoFactoryImpl.java
1 package org.openecomp.sdc.notification.factories.impl;
2
3 import org.openecomp.sdc.notification.dao.SubscribersDao;
4 import org.openecomp.sdc.notification.dao.impl.SubscribersDaoCassandraImpl;
5 import org.openecomp.sdc.notification.factories.SubscribersDaoFactory;
6
7
8 public class SubscribersDaoFactoryImpl extends SubscribersDaoFactory {
9     private static final SubscribersDao INSTANCE = new SubscribersDaoCassandraImpl();
10
11     @Override
12     public SubscribersDao createInterface() {
13         return INSTANCE;
14     }
15 }