/** * 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 BGPPeerUsesRouteMap as well as methods comparable to * the invokeMethods defined for this class. This Class implements the BGPPeerUsesRouteMapBean Interface. The CIM class BGPPeerUsesRouteMap is * described as follows: * * This association defines the RouteMaps that are aggregated and used by a particular BGPPeerGroup object. Multiple instances of the same RouteMap * may be aggregated into the same BGPPeerGroup. If this is desired, then the MapSequence attribute of the association can be used to disambiguate * them. */ public class BGPPeerUsesRouteMap extends CollectedMSEs implements Serializable { /** * This constructor creates a BGPPeerUsesRouteMapBeanImpl Class which implements the BGPPeerUsesRouteMapBean Interface, and encapsulates the CIM * class BGPPeerUsesRouteMap in a Java Bean. The CIM class BGPPeerUsesRouteMap is described as follows: * * This association defines the RouteMaps that are aggregated and used by a particular BGPPeerGroup object. Multiple instances of the same * RouteMap may be aggregated into the same BGPPeerGroup. If this is desired, then the MapSequence attribute of the association can be used to * disambiguate them. */ public BGPPeerUsesRouteMap() { }; /** * This method create an Association of the type BGPPeerUsesRouteMap between one BGPPeerGroup object and BGPRouteMap object */ public static BGPPeerUsesRouteMap link(BGPPeerGroup collection, BGPRouteMap member) { return (BGPPeerUsesRouteMap) Association.link(BGPPeerUsesRouteMap.class, collection, member); }// link /** * The following constants are defined for use with the ValueMap/Values qualified property mapSequence. */ private int mapSequence; /** * This method returns the BGPPeerUsesRouteMap.mapSequence property value. This property is described as follows: * * This defines the position of this RouteMap instance relative to all other instances of the same RouteMap. * * @return int current mapSequence property value * @exception Exception */ public int getMapSequence() { return this.mapSequence; } // getMapSequence /** * This method sets the BGPPeerUsesRouteMap.mapSequence property value. This property is described as follows: * * This defines the position of this RouteMap instance relative to all other instances of the same RouteMap. * * @param int new mapSequence property value * @exception Exception */ public void setMapSequence(int mapSequence) { this.mapSequence = mapSequence; } // setMapSequence } // Class BGPPeerUsesRouteMap