18 lines
367 B
Java
18 lines
367 B
Java
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;
|
|
}
|