common-smartgears/src/main/java/org/gcube/smartgears/handlers/ProfilePublisher.java

17 lines
239 B
Java

package org.gcube.smartgears.handlers;
import java.util.Collection;
public interface ProfilePublisher {
void addTo(Collection<String> contexts);
void addToAll();
void update();
void removeFrom(Collection<String> contexts);
}