Files
sqwtest01/src/com/ezparking/gprs/OutboundNotification.java

30 lines
552 B
Java
Raw Normal View History

/**
*
*/
package com.ezparking.gprs;
import org.smslib.IOutboundMessageNotification;
import org.smslib.OutboundMessage;
/**
* @author qwsun
*
*/
public class OutboundNotification implements IOutboundMessageNotification
{
/*
* (non-Javadoc)
*
* @see org.smslib.IOutboundMessageNotification#process(java.lang.String,
* org.smslib.OutboundMessage)
*/
@Override
public void process(String gatewayId, OutboundMessage msg)
{
System.out.println("Outbound handler called from Gateway: " + gatewayId);
System.out.println(msg);
}
}