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 the Developing ColdFusion Applications.

Usage

This method returns a string value that is set by the setGatewayID method.

Example

The following example is the ColdFusion SocketGateway class getGatewayID method:

public String getGatewayID() 
    { 
        return gatewayID; 
    }