/protocols/jain-megaco/megaco-api/src/main/java/javax/megaco/message/descriptor/TopologyDescriptor.java
http://mobicents.googlecode.com/ · Java · 88 lines · 31 code · 10 blank · 47 comment · 6 complexity · 72a51d5b1e4c94cd9ed7c6e2fe050ee3 MD5 · raw file
- package javax.megaco.message.descriptor;
- import javax.megaco.message.Descriptor;
- import javax.megaco.message.DescriptorType;
- import javax.megaco.message.Termination;
- /**
- * The class extends JAIN MEGACO Descriptor. This class describes the topology
- * descriptor.
- */
- public class TopologyDescriptor extends Descriptor {
- private Termination termA = null;
- private Termination termB = null;
- private TopologyDirection topologyDirect = null;
- /**
- * Constructs a Topology Descriptor with the mandatory parameters of the
- * termination-A, termination-B and the topology direction between these
- * terminations.
- *
- * @param termA
- * - This specifies an object identifier for the termination A.
- * @param termB
- * - This specifies an object identifier for the termination B.
- * @param topologyDirect
- * - This specifies topology direction between the terminations.
- * @throws IllegalArgumentException
- * : This exception is raised if the reference of either of
- * Termination Ids or the Topology Direction passed to this
- * method is NULL.
- */
- public TopologyDescriptor(Termination termA, Termination termB, TopologyDirection topologyDirect) throws IllegalArgumentException {
- if (termA == null || termB == null || topologyDirect == null) {
- IllegalArgumentException invalidArgumentException = new IllegalArgumentException("None of Termination A,b and TopologyDirection can be null");
- throw invalidArgumentException;
- }
- this.termA = termA;
- this.termB = termB;
- this.topologyDirect = topologyDirect;
- super.descriptorId = DescriptorType.M_TOPOLOGY_DESC;
- }
- /**
- * This method cannot be overridden by the derived class. This method
- * returns that the descriptor identifier is of type Topology descriptor.
- * This method overrides the corresponding method of the base class
- * Descriptor.
- *
- * @return Returns an integer value that identifies this object as the type
- * of topology descriptor. It returns that it is Topology Descriptor
- * i.e., M_TOPOLOGY_DESC.
- */
- public final int getDescriptorId() {
- return super.descriptorId;
- }
- /**
- * This method retrieves the termination A set in the topology descriptor.
- *
- * @return Returns the termination A for the topology.
- */
- public Termination getTermA() {
- return this.termA;
- }
- /**
- * This method retrieves the termination B set in the topology descriptor.
- *
- * @return Returns the termination B for the topology.
- */
- public Termination getTermB() {
- return this.termB;
- }
- /**
- * This method retrieves the integer value of the topology direction set in
- * the topology descriptor.
- *
- * @return Returns the integer value for the topology direction. It can take
- * only the values set in TopologyDirection
- */
- public int getTopologyDirection() {
- return this.topologyDirect.getTopologyDirection();
- }
- }