Creating a new GTD Message

The Cisco object class com.cisco.objclass.gtdis used to create GTD objects for read-write purposes. This object class is used to create a completely new GTD message or to create a copy of a GTD message received in a signaling event.

To create a new GTD message, use the format new com.cisco.objclass.gtd().

Example:

<var name= "my_new_gtd" expr= "new com.cisco.objclass.gtd()">creates a new empty GTD message. The message type for this GTD can be set later. For example,

<var name= "my_new_gtd.message_type" expr="IAM"/>. This GTD message is sent out using the <transfer> element.

Only GTD objects can be created; parameter objects cannot be created. For example,

<assign name="my_uus" expr="new UUS"/> is incorrect.

<assign name="my_uus" expr="my_gtd.UUS[0]"/> is correct (for the first instance).