Package org.snmp4j.agent.agentx.master.index.AgentXIndexRegistry

Examples of org.snmp4j.agent.agentx.master.index.AgentXIndexRegistry.IndexRegistryEntry.newIndex()


    IndexRegistryEntry newEntry = new IndexRegistryEntry(context, vb);
    IndexRegistryEntry entry = (IndexRegistryEntry) indexes.get(newEntry);
    if (entry == null) {
      entry = new IndexRegistryEntry(context, vb);
    }
    Variable v = entry.newIndex(sessionID, testOnly);
    if (v == null) {
      return AgentXProtocol.AGENTX_INDEX_NONE_AVAILABLE;
    }
    else if (!testOnly) {
      vb.setVariable(v);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.