link start!
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package com.tridium.snmp.mib.table;
|
||||
|
||||
public interface PointContainer {
|
||||
String getObjectIdentifier();
|
||||
|
||||
PointTable getTable(boolean z);
|
||||
|
||||
void registerIoObject(PointEntry pointEntry);
|
||||
|
||||
void unregisterIoObject(PointEntry pointEntry);
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
package com.tridium.snmp.mib.table;
|
||||
|
||||
import com.tridium.snmp.snmptypes.SnmpVar;
|
||||
|
||||
public interface PointEntry extends TableEntry {
|
||||
String getObjectIdentifier();
|
||||
|
||||
SnmpVar getValue();
|
||||
|
||||
boolean isSettablePoint();
|
||||
|
||||
void setObjectIdentifier(String str);
|
||||
|
||||
SnmpVar setValue(SnmpVar snmpVar);
|
||||
|
||||
void tryDecodeForSet(SnmpVar snmpVar) throws Exception;
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.tridium.snmp.mib.table;
|
||||
|
||||
public interface TableEntry {
|
||||
int getIndex();
|
||||
|
||||
int getLastHash();
|
||||
|
||||
String getPointName();
|
||||
|
||||
void setIndex(int i);
|
||||
|
||||
void setLastHash(int i);
|
||||
}
|
||||
Reference in New Issue
Block a user