com.github.bordertech.taskmaster.service.ServiceHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of taskmaster-service-helper Show documentation
Show all versions of taskmaster-service-helper Show documentation
Task Master provides a invoke service helper API.
package com.github.bordertech.taskmaster.service;
import com.github.bordertech.didums.Didums;
import com.github.bordertech.taskmaster.service.impl.ServiceHelperProviderDefault;
/**
* Service invocation helper.
*/
public final class ServiceHelper {
private static final ServiceHelperProvider PROVIDER = Didums.getService(ServiceHelperProvider.class, ServiceHelperProviderDefault.class);
/**
* Private constructor.
*/
private ServiceHelper() {
}
/**
* @return the ServiceHelperProvider
*/
public static ServiceHelperProvider getProvider() {
return PROVIDER;
}
}