/** * 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 ListsInRoutingPolicy as well as methods comparable to * the invokeMethods defined for this class. This Class implements the ListsInRoutingPolicyBean Interface. The CIM class ListsInRoutingPolicy is * described as follows: * * This is a specialization of the CIM_Component aggregation which is used to define a set of FilterLists that are aggregated by a particular * RoutingPolicy. */ public class ListsInRoutingPolicy extends Component implements Serializable { /** * This constructor creates a ListsInRoutingPolicyBeanImpl Class which implements the ListsInRoutingPolicyBean Interface, and encapsulates the CIM * class ListsInRoutingPolicy in a Java Bean. The CIM class ListsInRoutingPolicy is described as follows: * * This is a specialization of the CIM_Component aggregation which is used to define a set of FilterLists that are aggregated by a particular * RoutingPolicy. */ public ListsInRoutingPolicy() { }; /** * This method create an Association of the type ListsInRoutingPolicy between one RoutingPolicy object and FilterList object */ public static ListsInRoutingPolicy link(RoutingPolicy groupComponent, FilterList partComponent) { return (ListsInRoutingPolicy) Association.link(ListsInRoutingPolicy.class, groupComponent, partComponent); }// link /** * The following constants are defined for use with the ValueMap/Values qualified property listSequence. */ private int listSequence; /** * This method returns the ListsInRoutingPolicy.listSequence property value. This property is described as follows: * * The position of the FilterList relative to all other entries in the RoutingPolicy. * * @return int current listSequence property value * @exception Exception */ public int getListSequence() { return this.listSequence; } // getListSequence /** * This method sets the ListsInRoutingPolicy.listSequence property value. This property is described as follows: * * The position of the FilterList relative to all other entries in the RoutingPolicy. * * @param int new listSequence property value * @exception Exception */ public void setListSequence(int listSequence) { this.listSequence = listSequence; } // setListSequence } // Class ListsInRoutingPolicy