link start!
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
package com.tridium.fox.sys;
|
||||
|
||||
public interface NiagaraNetwork {
|
||||
NiagaraStation getStation(String str);
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
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();
|
||||
}
|
||||
Reference in New Issue
Block a user