/** * 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.Serializable; /** * This Class contains accessor and mutator methods for all properties defined in the CIM class PhysicalStatisticalInformation as well as methods * comparable to the invokeMethods defined for this class. This Class implements the PhysicalStatisticalInformationBean Interface. The CIM class * PhysicalStatisticalInformation is described as follows: * * Statistical information associated with a PhysicalElement or one of its subclasses. */ public class PhysicalStatisticalInformation extends StatisticalInformation implements Serializable { /** * This constructor creates a PhysicalStatisticalInformationBeanImpl Class which implements the PhysicalStatisticalInformationBean Interface, and * encapsulates the CIM class PhysicalStatisticalInformation in a Java Bean. The CIM class PhysicalStatisticalInformation is described as follows: * * Statistical information associated with a PhysicalElement or one of its subclasses. */ public PhysicalStatisticalInformation() { }; /** * The following constants are defined for use with the ValueMap/Values qualified property physicalCreationClassName. */ private String physicalCreationClassName; /** * This method returns the PhysicalStatisticalInformation.physicalCreationClassName property value. This property is described as follows: * * The scoping Element's CreationClassName. * * @return String current physicalCreationClassName property value * @exception Exception */ public String getPhysicalCreationClassName() { return this.physicalCreationClassName; } // getPhysicalCreationClassName /** * This method sets the PhysicalStatisticalInformation.physicalCreationClassName property value. This property is described as follows: * * The scoping Element's CreationClassName. * * @param String * new physicalCreationClassName property value * @exception Exception */ public void setPhysicalCreationClassName(String physicalCreationClassName) { this.physicalCreationClassName = physicalCreationClassName; } // setPhysicalCreationClassName /** * The following constants are defined for use with the ValueMap/Values qualified property tag. */ private String tag; /** * This method returns the PhysicalStatisticalInformation.tag property value. This property is described as follows: * * The scoping Element's identifying Tag. * * @return String current tag property value * @exception Exception */ public String getTag() { return this.tag; } // getTag /** * This method sets the PhysicalStatisticalInformation.tag property value. This property is described as follows: * * The scoping Element's identifying Tag. * * @param String * new tag property value * @exception Exception */ public void setTag(String tag) { this.tag = tag; } // setTag /** * The following constants are defined for use with the ValueMap/Values qualified property creationClassName. */ private String creationClassName; /** * This method returns the PhysicalStatisticalInformation.creationClassName property value. This property is described as follows: * * CreationClassName indicates the name of the class or the subclass used in the creation of an instance. When used with the other key properties * of this class, this property allows all instances of this class and its subclasses to be uniquely identified. * * @return String current creationClassName property value * @exception Exception */ public String getCreationClassName() { return this.creationClassName; } // getCreationClassName /** * This method sets the PhysicalStatisticalInformation.creationClassName property value. This property is described as follows: * * CreationClassName indicates the name of the class or the subclass used in the creation of an instance. When used with the other key properties * of this class, this property allows all instances of this class and its subclasses to be uniquely identified. * * @param String * new creationClassName property value * @exception Exception */ public void setCreationClassName(String creationClassName) { this.creationClassName = creationClassName; } // setCreationClassName // /** // * The following constants are defined for use with the ValueMap/Values qualified property name. // */ // private String name; /** * This method returns the PhysicalStatisticalInformation.name property value. This property is described as follows: * * The Name property, inherited from StatisticalInformation, serves as part of the object key. * * @return String current name property value * @exception Exception */ @Override public String getName() { return super.getName(); } // getName /** * This method sets the PhysicalStatisticalInformation.name property value. This property is described as follows: * * The Name property, inherited from StatisticalInformation, serves as part of the object key. * * @param String * new name property value * @exception Exception */ @Override public void setName(String name) { super.setName(name); } // setName } // Class PhysicalStatisticalInformation