53 lines
956 B
Java
53 lines
956 B
Java
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);
|
|
}
|