com.adventnet.tl1.message
Class TL1AccessIdentifier

java.lang.Object
  |
  +--com.adventnet.tl1.message.TL1AccessIdentifier

public class TL1AccessIdentifier
extends java.lang.Object

This class represents an Access Identification (AID) block which is a part of the Staging Parameter Block in the TL1 Input Message. The AID contains one or more parameters (TL1Param) which uniquely identifies the entity within the target NE that is being acted upon. These parameters are stored as a vector of TL1Param objects.

TL1 Input Message block

See Also:
TL1Param, TL1InputMessage

Constructor Summary
TL1AccessIdentifier()
          Default constructor that creates a TL1AccessIdentifier object instance.
TL1AccessIdentifier(java.util.Vector param)
          This constructor creates a TL1AccessIdentifier object instance with a vector of TL1Param objects.
 
Method Summary
 void addParameter(TL1Param value)
          This method adds a TL1Param object to the existing pararameter list.
 java.util.Vector getParams()
          Get the parameters set on this object as a vector of TL1Param objects.
 void setParams(java.util.Vector param)
          Set the parameter list as a vector of TL1Param objects with the specified value.
 java.lang.String toString()
          This method converts the TL1Param objects contained in the Vector into String form.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TL1AccessIdentifier

public TL1AccessIdentifier()
Default constructor that creates a TL1AccessIdentifier object instance.

TL1AccessIdentifier

public TL1AccessIdentifier(java.util.Vector param)
This constructor creates a TL1AccessIdentifier object instance with a vector of TL1Param objects.
Parameters:
param - Vector of TL1Param Objects
See Also:
TL1Param
Method Detail

getParams

public java.util.Vector getParams()
Get the parameters set on this object as a vector of TL1Param objects.
Returns:
Vector of TL1Param objects.
See Also:
TL1Param

setParams

public void setParams(java.util.Vector param)
Set the parameter list as a vector of TL1Param objects with the specified value.
Parameters:
param - Vector of TL1Param objects.
See Also:
TL1Param

addParameter

public void addParameter(TL1Param value)
This method adds a TL1Param object to the existing pararameter list.
Parameters:
value - TL1Param object.
See Also:
TL1Param

toString

public java.lang.String toString()
This method converts the TL1Param objects contained in the Vector into String form.
Overrides:
toString in class java.lang.Object
Returns:
String representation of the object.