link start!
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
package com.tridium.nv.point;
|
||||
|
||||
import javax.baja.log.Log;
|
||||
import javax.baja.sys.BValue;
|
||||
|
||||
public interface INiagaraProxyExt {
|
||||
void commitSubscriptionError(String str);
|
||||
|
||||
Log getLog();
|
||||
|
||||
int getMessageId();
|
||||
|
||||
String getPointId();
|
||||
|
||||
String getPointType();
|
||||
|
||||
Object getStateLock();
|
||||
|
||||
String getStationName();
|
||||
|
||||
String getSubscriptionError();
|
||||
|
||||
BSubscriptionState getSubscriptionState();
|
||||
|
||||
boolean isActionFetchRequired();
|
||||
|
||||
boolean isDisabled();
|
||||
|
||||
boolean isPointSubscribed();
|
||||
|
||||
void pendingSubscribe();
|
||||
|
||||
void readFail(String str);
|
||||
|
||||
void readValueOk(BValue bValue);
|
||||
|
||||
void sendingSubscribe();
|
||||
|
||||
void sendingUnsubscribe();
|
||||
|
||||
void sentSubscribe();
|
||||
|
||||
void sentUnsubscribe();
|
||||
|
||||
void setProxySubscriptionStatus(String str);
|
||||
|
||||
void setSubscriptionError(String str);
|
||||
|
||||
void setSubscriptionState(BSubscriptionState bSubscriptionState);
|
||||
|
||||
void updateActions(BVirtualAction[] bVirtualActionArr);
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
package com.tridium.nv.point;
|
||||
|
||||
import javax.baja.sys.BString;
|
||||
import javax.baja.sys.BValue;
|
||||
|
||||
public interface IProxyActionParent {
|
||||
String getPointId();
|
||||
|
||||
BValue getProxyActionDefault(BString bString);
|
||||
|
||||
BValue invokeAction(BVirtualAction bVirtualAction, BValue bValue) throws Exception;
|
||||
}
|
||||
Reference in New Issue
Block a user