summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-core/src/main/java/org/openecomp/sdc/notification/factories/impl/NotificationsDaoFactoryImpl.java
blob: edb020637b99679f0a691b16cc0000a0754b423c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.openecomp.sdc.notification.factories.impl;

import org.openecomp.sdc.notification.dao.NotificationsDao;
import org.openecomp.sdc.notification.dao.impl.NotificationsDaoCassandraImpl;
import org.openecomp.sdc.notification.factories.NotificationsDaoFactory;

/**
 * @author Avrahamg
 * @since June 20, 2017
 */
public class NotificationsDaoFactoryImpl extends NotificationsDaoFactory {
  private static final NotificationsDao INSTANCE = new NotificationsDaoCassandraImpl();

  @Override
  public NotificationsDao createInterface() {
    return INSTANCE;
  }
}