com.robothy.s3.rest.service.ServiceFactory Maven / Gradle / Ivy
package com.robothy.s3.rest.service;
import java.util.function.Supplier;
public interface ServiceFactory {
void register(Class clazz, Supplier extends T> factory);
T getInstance(Class clazz);
}