io.hawt.jvm.local.JVMListMBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hawtio-local-jvm-mbean Show documentation
Show all versions of hawtio-local-jvm-mbean Show documentation
hawtio :: ${project.artifactId}
package io.hawt.jvm.local;
import java.util.List;
public interface JVMListMBean {
List listLocalJVMs();
void startAgent(String PID);
String agentStatus(String PID);
String agentVersion(String PID);
void stopAgent(String PID);
}