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