User Guide

966 Chapter 6: ColdFusion MX Event Gateway Reference
getGatewayID
Description
Returns the gateway ID that identifies the Gateway instance.
Category
Event Gateway Development
Syntax
public String getGatewayID()
See also
setGatewayID
, “Providing Gateway class service and information routines” in Chapter 45,
“Creating Custom Event Gateways” in ColdFusion MX Developers Guide
Usage
This method returns a string value that is set by the setGatewayID method.
Example
The following example is the ColdFusion MX SocketGateway class getGatewayID method:
public String getGatewayID()
{
return gatewayID;
}