resource-registry-api/src/main/java/org/gcube/informationsystem/resourceregistry/api/contexts/ContextCacheRenewal.java

13 lines
366 B
Java

package org.gcube.informationsystem.resourceregistry.api.contexts;
import java.util.List;
import org.gcube.informationsystem.context.reference.entities.Context;
import org.gcube.informationsystem.resourceregistry.api.exceptions.ResourceRegistryException;
public interface ContextCacheRenewal {
public List<Context> renew() throws ResourceRegistryException;
}