1 11 12 13 14 15 package com.sun.jmx.snmp.IPAcl; 16 17 21 class JDMTrapCommunity extends SimpleNode { 22 protected String community= ""; 23 JDMTrapCommunity(int id) { 24 super(id); 25 } 26 27 JDMTrapCommunity(Parser p, int id) { 28 super(p, id); 29 } 30 31 public static Node jjtCreate(int id) { 32 return new JDMTrapCommunity(id); 33 } 34 35 public static Node jjtCreate(Parser p, int id) { 36 return new JDMTrapCommunity(p, id); 37 } 38 39 public String getCommunity() { 40 return community; 41 } 42 } 43 | Popular Tags |