30 lines
552 B
Java
30 lines
552 B
Java
![]() |
/**
|
||
|
*
|
||
|
*/
|
||
|
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);
|
||
|
}
|
||
|
|
||
|
}
|