brooklyn.entity.osgi.karaf.KarafDriver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brooklyn-software-osgi Show documentation
Show all versions of brooklyn-software-osgi Show documentation
Brooklyn entities for OSGi container software processes
package brooklyn.entity.osgi.karaf;
import java.io.File;
import brooklyn.entity.java.JavaSoftwareProcessDriver;
public interface KarafDriver extends JavaSoftwareProcessDriver {
public String getRunDir();
public void copyFile(File src, File destination);
}