resource-registry-publisher/src/main/java/org/gcube/informationsystem/resourceregistry/publisher/proxy/ResourceRegistryPublisherFa...

18 lines
409 B
Java

package org.gcube.informationsystem.resourceregistry.publisher.proxy;
public class ResourceRegistryPublisherFactory {
private static ResourceRegistryPublisher singleton = new ResourceRegistryPublisherImpl();
public static ResourceRegistryPublisher create(){
return singleton;
}
public static void setPublisher(ResourceRegistryPublisher registryPublisher){
singleton = registryPublisher;
}
}