blob: 1bf3706f8458e400e202aab088c83b4ad70f263f [file] [log] [blame]
package org.apache.karaf.webconsole.karaf.core.model;
import java.io.Serializable;
public class WicketKaraf implements Serializable {
public String getVersion() {
return System.getProperty("karaf.version");
}
public String getHome() {
return System.getProperty("karaf.home");
}
public String getBase() {
return System.getProperty("karaf.base");
}
public String getData() {
return System.getProperty("karaf.data");
}
public String getInstances() {
return System.getProperty("karaf.instances");
}
public Boolean isLocalConsole() {
return Boolean.getBoolean("karaf.startLocalConsole");
}
public Boolean isRemoteShell() {
return Boolean.getBoolean("karaf.startRemoteShell");
}
}