/** * This file was auto-generated by mofcomp -j version 1.0.0 on Wed Jan 12 * 09:21:06 CET 2011. */ package org.opennaas.extensions.router.model; import java.io.*; import java.lang.Exception; /** * This Class contains accessor and mutator methods for all properties defined in the CIM class IPXNetwork as well as methods comparable to the * invokeMethods defined for this class. This Class implements the IPXNetworkBean Interface. The CIM class IPXNetwork is described as follows: * * A network or subnet that uses the IPX protocol. Since this class' superclass (LogicalNetwork) has been deprecated (in order to define more * consistent 'collection' semantics), this class is also deprecated. */ @Deprecated public class IPXNetwork extends LogicalNetwork implements Serializable { /** * This constructor creates a IPXNetworkBeanImpl Class which implements the IPXNetworkBean Interface, and encapsulates the CIM class IPXNetwork in * a Java Bean. The CIM class IPXNetwork is described as follows: * * A network or subnet that uses the IPX protocol. Since this class' superclass (LogicalNetwork) has been deprecated (in order to define more * consistent 'collection' semantics), this class is also deprecated. */ public IPXNetwork() { }; /** * The following constants are defined for use with the ValueMap/Values qualified property networkNumber. */ @Deprecated private String networkNumber; /** * This method returns the IPXNetwork.networkNumber property value. This property is described as follows: * * An IPX network number formatted as eight hexadecimal digits (e.g., "00112233"). * * @return String current networkNumber property value * @exception Exception */ @Deprecated public String getNetworkNumber() { return this.networkNumber; } // getNetworkNumber /** * This method sets the IPXNetwork.networkNumber property value. This property is described as follows: * * An IPX network number formatted as eight hexadecimal digits (e.g., "00112233"). * * @param String * new networkNumber property value * @exception Exception */ @Deprecated public void setNetworkNumber(String networkNumber) { this.networkNumber = networkNumber; } // setNetworkNumber } // Class IPXNetwork