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 / NotificationsDaoFactoryImpl.java
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 }