1 package org.openecomp.sdc.notification.factories.impl;
3 import org.openecomp.sdc.notification.factories.LastNotificationDaoFactory;
4 import org.openecomp.sdc.notification.factories.NotificationsDaoFactory;
5 import org.openecomp.sdc.notification.factories.NotificationsServiceFactory;
6 import org.openecomp.sdc.notification.services.NotificationsService;
7 import org.openecomp.sdc.notification.services.impl.NotificationsServiceImpl;
11 * @since June 20, 2017
13 public class NotificationsServiceFactoryImpl extends NotificationsServiceFactory {
14 private static final NotificationsService INSTANCE = new NotificationsServiceImpl(
15 LastNotificationDaoFactory.getInstance().createInterface(), NotificationsDaoFactory
16 .getInstance().createInterface());
19 public NotificationsService createInterface() {