/** * 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 TransparentBridgingStatistics as well as methods * comparable to the invokeMethods defined for this class. This Class implements the TransparentBridgingStatisticsBean Interface. The CIM class * TransparentBridgingStatistics is described as follows: * * Statistical information regarding the TransparentBridging Service. */ public class TransparentBridgingStatistics extends ServiceStatisticalInformation implements Serializable { /** * This constructor creates a TransparentBridgingStatisticsBeanImpl Class which implements the TransparentBridgingStatisticsBean Interface, and * encapsulates the CIM class TransparentBridgingStatistics in a Java Bean. The CIM class TransparentBridgingStatistics is described as follows: * * Statistical information regarding the TransparentBridging Service. */ public TransparentBridgingStatistics() { }; /** * The following constants are defined for use with the ValueMap/Values qualified property learnedEntryDiscards. */ private long learnedEntryDiscards; /** * This method returns the TransparentBridgingStatistics.learnedEntryDiscards property value. This property is described as follows: * * The total number of Forwarding Database entries, which have been or would have been learnt, but have been discarded due to a lack of space to * store them in the Forwarding Database. * * @return long current learnedEntryDiscards property value * @exception Exception */ public long getLearnedEntryDiscards() { return this.learnedEntryDiscards; } // getLearnedEntryDiscards /** * This method sets the TransparentBridgingStatistics.learnedEntryDiscards property value. This property is described as follows: * * The total number of Forwarding Database entries, which have been or would have been learnt, but have been discarded due to a lack of space to * store them in the Forwarding Database. * * @param long new learnedEntryDiscards property value * @exception Exception */ public void setLearnedEntryDiscards(long learnedEntryDiscards) { this.learnedEntryDiscards = learnedEntryDiscards; } // setLearnedEntryDiscards } // Class TransparentBridgingStatistics