33 lines
522 B
Java
33 lines
522 B
Java
package com.tridium.fox.sys;
|
|
|
|
import com.tridium.fox.message.FoxMessage;
|
|
import javax.baja.naming.BHost;
|
|
|
|
public interface NiagaraStation {
|
|
void clientClosed();
|
|
|
|
void clientOpened();
|
|
|
|
String getFaultCause();
|
|
|
|
int getFoxPort();
|
|
|
|
BHost getRemoteHost();
|
|
|
|
String getScheme();
|
|
|
|
String getStationName();
|
|
|
|
void initHello(FoxMessage foxMessage) throws Exception;
|
|
|
|
boolean isFatalFault();
|
|
|
|
void pingFail(String str);
|
|
|
|
void pingOk();
|
|
|
|
void serverClosed();
|
|
|
|
void serverOpened();
|
|
}
|