1 10 11 package com.sun.jmx.snmp.agent; 12 13 import com.sun.jmx.snmp.SnmpValue; 16 import com.sun.jmx.snmp.SnmpStatusException; 17 18 39 public interface SnmpGenericMetaServer { 40 41 55 Object buildAttributeValue(long id, SnmpValue value) 56 throws SnmpStatusException; 57 58 70 SnmpValue buildSnmpValue(long id, Object value) 71 throws SnmpStatusException; 72 73 85 String getAttributeName(long id) 86 throws SnmpStatusException; 87 88 100 void checkSetAccess(SnmpValue x, long id, Object data) 101 throws SnmpStatusException; 102 103 114 void checkGetAccess(long id, Object data) 115 throws SnmpStatusException; 116 117 } 118 119 | Popular Tags |