org.integratedmodelling.kserver.resources.ResourcePublisher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of klab-server Show documentation
Show all versions of klab-server Show documentation
Spring controllers and common components for all k.LAB REST servers
package org.integratedmodelling.kserver.resources;
import java.io.File;
import java.util.Set;
import org.integratedmodelling.api.network.IComponent;
import org.integratedmodelling.api.project.IProject;
public class ResourcePublisher {
public String publishDirectory(File file, Set groups) {
return null;
}
public String publishFile(File file, Set groups) {
return null;
}
public String publishProject(IProject project, boolean isSynchronized, Set groups) {
return null;
}
public String publishComponent(IComponent component, Set groups) {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy