1 11 12 13 14 package com.sun.jmx.snmp.IPAcl; 15 16 import java.net.UnknownHostException ; 17 18 class JDMNetMaskV6 extends JDMNetMask { 19 public JDMNetMaskV6(int id) { 20 super(id); 21 } 22 23 public JDMNetMaskV6(Parser p, int id) { 24 super(p, id); 25 } 26 protected PrincipalImpl createAssociatedPrincipal() 27 throws UnknownHostException { 28 return new NetMaskImpl(address.toString(), Integer.parseInt(mask)); 29 } 30 } 31 | Popular Tags |