You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
754 B
47 lines
754 B
/*
|
|
* Copyright (c) 2002, 2006, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
/* Generated By:JJTree: Do not edit this line. JDMNetMaskV6.java */
|
|
|
|
package com.sun.jmx.snmp.IPAcl;
|
|
|
|
import java.net.UnknownHostException;
|
|
|
|
class JDMNetMaskV6 extends JDMNetMask {
|
|
private static final long serialVersionUID = 4505256777680576645L;
|
|
|
|
public JDMNetMaskV6(int id) {
|
|
super(id);
|
|
}
|
|
|
|
public JDMNetMaskV6(Parser p, int id) {
|
|
super(p, id);
|
|
}
|
|
protected PrincipalImpl createAssociatedPrincipal()
|
|
throws UnknownHostException {
|
|
return new NetMaskImpl(address.toString(), Integer.parseInt(mask));
|
|
}
|
|
}
|