All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.bordertech.taskmaster.service.ServiceHelper Maven / Gradle / Ivy

There is a newer version: 2.0.0-beta-1
Show newest version
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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy