1 20 21 22 package org.snmp4j.agent.io; 23 24 import org.snmp4j.smi.Variable; 25 import java.io.IOException ; 26 27 public interface MOInput { 28 29 37 int getImportMode(); 38 39 Context readContext() throws IOException ; 40 void skipContext(Context context) throws IOException ; 41 42 MOInfo readManagedObject() throws IOException ; 43 44 51 void skipManagedObject(MOInfo mo) throws IOException ; 52 53 Variable readVariable() throws IOException ; 54 55 Sequence readSequence() throws IOException ; 56 57 IndexedVariables readIndexedVariables() throws IOException ; 58 59 60 } 61 | Popular Tags |