/** * 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 CalculatesAmong as well as methods comparable to the * invokeMethods defined for this class. This Class implements the CalculatesAmongBean Interface. The CIM class CalculatesAmong is described as * follows: * * This is a specialization of the ServiceSAPDependency association, indicating that the referenced ProtocolEndpoint is utilized by the * RouteCalculationService to provide its functionality. */ public class CalculatesAmong extends ServiceSAPDependency implements Serializable { /** * This constructor creates a CalculatesAmongBeanImpl Class which implements the CalculatesAmongBean Interface, and encapsulates the CIM class * CalculatesAmong in a Java Bean. The CIM class CalculatesAmong is described as follows: * * This is a specialization of the ServiceSAPDependency association, indicating that the referenced ProtocolEndpoint is utilized by the * RouteCalculationService to provide its functionality. */ public CalculatesAmong() { }; /** * This method create an Association of the type CalculatesAmong between one ProtocolEndpoint object and RouteCalculationService object */ public static CalculatesAmong link(ProtocolEndpoint antecedent, RouteCalculationService dependent) { return (CalculatesAmong) Association.link(CalculatesAmong.class, antecedent, dependent); }// link /** * The following constants are defined for use with the ValueMap/Values qualified property isStatic. */ @Deprecated private boolean isStatic; /** * This method returns the CalculatesAmong.isStatic property value. This property is described as follows: * * TRUE indicates that this ProtocolEndpoint represents a static route, and FALSE means that it represents a dynamically-learned route. This * property is deprecated since a Service may use an Endpoint to output several routes, some static and others dynamic. * * @return boolean current isStatic property value * @exception Exception */ @Deprecated public boolean isIsStatic() { return this.isStatic; } // getIsStatic /** * This method sets the CalculatesAmong.isStatic property value. This property is described as follows: * * TRUE indicates that this ProtocolEndpoint represents a static route, and FALSE means that it represents a dynamically-learned route. This * property is deprecated since a Service may use an Endpoint to output several routes, some static and others dynamic. * * @param boolean new isStatic property value * @exception Exception */ @Deprecated public void setIsStatic(boolean isStatic) { this.isStatic = isStatic; } // setIsStatic } // Class CalculatesAmong