
com.enterprisemath.utils.engine.TaskServiceProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of em-utils Show documentation
Show all versions of em-utils Show documentation
Collection of utility classes for large scale projects focusing on robust and testable code.
package com.enterprisemath.utils.engine;
/**
* Definition of service provider for engine tasks.
*
* @author radek.hecl
*/
public interface TaskServiceProvider {
/**
* Returns the service.
*
* @param service class type
* @param name service name
* @param clazz service class
* @return service
*/
public T getService(String name, Class clazz);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy