link start!

This commit is contained in:
cherubin
2026-03-17 13:31:18 -07:00
commit 08abe87cfb
5910 changed files with 386288 additions and 0 deletions
@@ -0,0 +1,44 @@
package javax.baja.provisioningNiagara.station;
import javax.baja.fox.BFoxProxySession;
import javax.baja.platform.BStationStatus;
import javax.baja.platform.ICancelHint;
import javax.baja.platform.IPlatformOperationListener;
import javax.baja.platform.PlatformDaemon;
import javax.baja.sys.Context;
public interface ProvisioningStationManager {
boolean canReboot();
boolean canRestart();
boolean canStart();
BFoxProxySession getFoxSession() throws Exception;
PlatformDaemon getPlatformDaemon() throws Exception;
BStationStatus getStationStatus();
void killStation(IPlatformOperationListener iPlatformOperationListener) throws Exception;
void killStationAsync() throws Exception;
void poll(ICancelHint iCancelHint, Context context) throws Exception;
void rebootHost() throws Exception;
void restartStationAsync() throws Exception;
void saveStation(IPlatformOperationListener iPlatformOperationListener) throws Exception;
void saveStationAsync() throws Exception;
void startStation(IPlatformOperationListener iPlatformOperationListener) throws Exception;
void startStationAsync() throws Exception;
void stopStation(IPlatformOperationListener iPlatformOperationListener) throws Exception;
void stopStationAsync() throws Exception;
}