fb87b944f94c2a0c1e04ad4688d88b94e0f81ef3
[sdc.git] /
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 }