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