e5987fe266d0644910f3e2f9164b05d0cf9fe8c1
[sdc.git] /
1 package org.openecomp.sdc.notification.factories.impl;
2
3 import org.openecomp.sdc.notification.factories.NotificationsDaoFactory;
4 import org.openecomp.sdc.notification.factories.PropagationServiceFactory;
5 import org.openecomp.sdc.notification.services.PropagationService;
6 import org.openecomp.sdc.notification.services.impl.PropagationServiceImpl;
7
8 public class PropagationServiceFactoryImpl extends PropagationServiceFactory {
9     private static final PropagationService INSTANCE = new PropagationServiceImpl(
10             NotificationsDaoFactory.getInstance().createInterface());
11
12     @Override
13     public PropagationService createInterface() {
14         return INSTANCE;
15     }
16 }