Init EZParkingGPRS project into Coding.net

This commit is contained in:
qwsun
2015-12-21 13:35:57 +08:00
commit 9b40bb35c9
51 changed files with 2195 additions and 0 deletions

View File

@ -0,0 +1,29 @@
/**
*
*/
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);
}
}