net.anotheria.portalkit.services.account.AccountServiceFactory Maven / Gradle / Ivy
package net.anotheria.portalkit.services.account;
import net.anotheria.anoprise.metafactory.ServiceFactory;
import net.anotheria.portalkit.services.common.util.ServiceProxyUtil;
/**
* {@link AccountService} factory for main implementation.
*
* @author Alexandr Bolbat
*/
public class AccountServiceFactory implements ServiceFactory {
@Override
public AccountService create() {
return ServiceProxyUtil.createServiceProxy(AccountService.class, AccountServiceImpl.INSTANCE, "service", "portal-kit", true, AccountAdminService.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy