net.anotheria.portalkit.services.subscription.SubscriptionServiceFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pk-services-subscriptionservice Show documentation
Show all versions of pk-services-subscriptionservice Show documentation
Subscription service manages subscriptions of the user
package net.anotheria.portalkit.services.subscription;
import net.anotheria.anoprise.metafactory.ServiceFactory;
import net.anotheria.portalkit.services.common.spring.SpringHolder;
/**
* @author Vlad Lukjanenko
*/
public class SubscriptionServiceFactory implements ServiceFactory {
@Override
public SubscriptionService create() {
return SpringHolder.get(SubscriptionService.class);
}
}