Examples of AgentXRegion


Examples of org.snmp4j.agent.agentx.AgentXRegion

  private TreeSet registrations = new TreeSet();
  private AgentXRegion region;

  public AgentXNode(AgentXRegion region, AgentXRegEntry registration) {
    this.region = new AgentXRegion(region);
    this.registrations.add(registration);
  }
View Full Code Here

Examples of org.snmp4j.agent.agentx.AgentXRegion

    this.region = new AgentXRegion(region);
    this.registrations.add(registration);
  }

  protected AgentXNode(AgentXRegion region, TreeSet registrations) {
    this.region = new AgentXRegion(region);
    this.registrations = registrations;
  }
View Full Code Here

Examples of org.snmp4j.agent.agentx.AgentXRegion

    this.region = new AgentXRegion(region);
    this.registrations = registrations;
  }

  public AgentXNode getClone(AgentXRegion region) {
    return new AgentXNode(new AgentXRegion(region),
                          (TreeSet)registrations.clone());
  }
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.