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 Creating Custom Event Gateways in ColdFusion MX Developer's 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;
   }

View comments in LiveDocs