edb020637b99679f0a691b16cc0000a0754b423c
[sdc.git] /
1 package org.openecomp.sdc.notification.factories.impl;
2
3 import org.openecomp.sdc.notification.dao.NotificationsDao;
4 import org.openecomp.sdc.notification.dao.impl.NotificationsDaoCassandraImpl;
5 import org.openecomp.sdc.notification.factories.NotificationsDaoFactory;
6
7 /**
8  * @author Avrahamg
9  * @since June 20, 2017
10  */
11 public class NotificationsDaoFactoryImpl extends NotificationsDaoFactory {
12   private static final NotificationsDao INSTANCE = new NotificationsDaoCassandraImpl();
13
14   @Override
15   public NotificationsDao createInterface() {
16     return INSTANCE;
17   }
18 }