Package org.snmp4j.agent.agentx

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


    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

    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

Related Classes of org.snmp4j.agent.agentx.AgentXRegion

Copyright © 2018 www.massapicom. 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.