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 / LastNotificationDaoFactoryImpl.java
1 package org.openecomp.sdc.notification.factories.impl;
2
3 import org.openecomp.sdc.notification.dao.LastNotificationDao;
4 import org.openecomp.sdc.notification.dao.impl.LastNotificationDaoCassandraImpl;
5 import org.openecomp.sdc.notification.factories.LastNotificationDaoFactory;
6
7 /**
8  * @author itzikpa
9  * @since June 23, 2017
10  */
11
12 public class LastNotificationDaoFactoryImpl extends LastNotificationDaoFactory {
13   private static final LastNotificationDao INSTANCE = new LastNotificationDaoCassandraImpl();
14
15   @Override
16   public LastNotificationDao createInterface() {
17     return INSTANCE;
18   }
19 }