|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use SMPPPacket | |
|---|---|
| org.mobicents.protocols.smpp | Base smppapi functionality. |
| org.mobicents.protocols.smpp.event | Utility classes used by the smppapi. |
| org.mobicents.protocols.smpp.message | SMPP packet types. |
| org.mobicents.protocols.smpp.net | smppapi asynchronous event framework. |
| org.mobicents.protocols.smpp.util | Network protocol support. |
| Uses of SMPPPacket in org.mobicents.protocols.smpp |
|---|
| Methods in org.mobicents.protocols.smpp with parameters of type SMPPPacket | |
|---|---|
void |
Session.processReceivedPacket(SMPPPacket packet)
|
void |
Session.sendPacket(SMPPPacket packet)
|
| Uses of SMPPPacket in org.mobicents.protocols.smpp.event |
|---|
| Methods in org.mobicents.protocols.smpp.event with parameters of type SMPPPacket | |
|---|---|
void |
TaskExecutorEventDispatcher.notifyObservers(Session conn,
SMPPPacket packet)
|
void |
SimpleEventDispatcher.notifyObservers(Session conn,
SMPPPacket packet)
Notify registered observers of an incoming SMPP packet. |
void |
EventDispatcher.notifyObservers(Session conn,
SMPPPacket packet)
Notify all registered observers of a received SMPP packet. |
void |
SMPPEventAdapter.packetReceived(Session source,
SMPPPacket pak)
|
void |
SessionObserver.packetReceived(Session source,
SMPPPacket packet)
Called when a new SMPP packet has been received from the SMSC. |
void |
SMPPEventAdapter.queryResponse(Session source,
SMPPPacket qr)
One of a QuerySM, QueryLastMsgs or QueryMsgDetails response packet has been received from the SMSC. |
void |
SMPPEventAdapter.unidentified(Session source,
SMPPPacket pak)
An unidentified packet has been received from the SMSC. |
| Uses of SMPPPacket in org.mobicents.protocols.smpp.message |
|---|
| Subclasses of SMPPPacket in org.mobicents.protocols.smpp.message | |
|---|---|
class |
AlertNotification
Alert notification. |
class |
Bind
Abstract parent of BindTransmitter, BindReceiver and BindTransceiver. |
class |
BindReceiver
Bind to the SMSC as receiver. |
class |
BindReceiverResp
SMSC response to a BindReceiver request. |
class |
BindResp
SMSC response to a Bind request. |
class |
BindTransceiver
Bind to the SMSC as a transceiver. |
class |
BindTransceiverResp
SMSC response to a BindTransceiver request. |
class |
BindTransmitter
Bind to the SMSC as a transmitter. |
class |
BindTransmitterResp
SMSC response to a BindTransmitter request. |
class |
BroadcastSM
Submit a broadcast message to the SMSC. |
class |
BroadcastSMResp
BroadcastSM response packet. |
class |
CancelBroadcastSM
Cancel a previously submitted broadcast message. |
class |
CancelBroadcastSMResp
Cancel broadcast message response. |
class |
CancelSM
Cancal message. |
class |
CancelSMResp
SMSC response to a cancel message request. |
class |
DataSM
Transfer data between the SC and an ESME. |
class |
DataSMResp
Response to a data_sm. |
class |
DeliverSM
Deliver message. |
class |
DeliverSMResp
ESME response to a Deliver message request. |
class |
EnquireLink
Check the link status. |
class |
EnquireLinkResp
ESME or SMSC response to an EnquireLink request. |
class |
GenericNack
Generic negative acknowledgment. |
class |
Outbind
$Id: Outbind.java 457 2009-01-15 17:37:42Z orank $ |
class |
ParamRetrieve
Parameter retrieve. |
class |
ParamRetrieveResp
SMSC response to a ParamRetrieve request. |
class |
QueryBroadcastSM
Query the status of a previously submitted broadcast message. |
class |
QueryBroadcastSMResp
QueryBroadcastSM response packet. |
class |
QueryLastMsgs
Query the last number of messages sent from a certain ESME. |
class |
QueryLastMsgsResp
SMSC response to a QueryLastMsgs request. |
class |
QueryMsgDetails
Query Message details. |
class |
QueryMsgDetailsResp
Response to Query message details. |
class |
QuerySM
Query the state of a message. |
class |
QuerySMResp
SMSC response to a QuerySM request. |
class |
ReplaceSM
Replace a message. |
class |
ReplaceSMResp
SMSC response to a ReplaceSM request. |
class |
SubmitMulti
Submit a message to multiple destinations. |
class |
SubmitMultiResp
Submit to multiple destinations response. |
class |
SubmitSM
Submit a message to the SMSC for delivery to a single destination. |
class |
SubmitSMResp
Submit short message response. |
class |
Unbind
Unbind from the SMSC. |
class |
UnbindResp
SMSC response to an Unbind request. |
| Constructors in org.mobicents.protocols.smpp.message with parameters of type SMPPPacket | |
|---|---|
BindReceiverResp(SMPPPacket request)
|
|
BindResp(SMPPPacket request)
|
|
BindTransceiverResp(SMPPPacket request)
Create a new BindTransceiverResp packet in response to a BindTransceiver. |
|
BindTransmitterResp(SMPPPacket request)
Create a new BindTransmitterResp packet in response to a BindTransmitter. |
|
CancelSMResp(SMPPPacket request)
Create a new CancelSMResp packet in response to a CancelSM. |
|
DataSMResp(SMPPPacket request)
Create a new DataSMResp packet in response to a DataSM. |
|
DeliverSMResp(SMPPPacket request)
Create a new DeliverSMResp packet in response to a DeliverSM. |
|
EnquireLinkResp(SMPPPacket request)
Create a new BindReceiverResp packet in response to a BindReceiver. |
|
GenericNack(SMPPPacket request)
|
|
ParamRetrieveResp(SMPPPacket request)
Create a new ParamRetrieveResp packet in response to a BindReceiver. |
|
QueryLastMsgsResp(SMPPPacket request)
Create a new QueryLastMsgsResp packet in response to a BindReceiver. |
|
QueryMsgDetailsResp(SMPPPacket request)
Create a new QueryMsgDetailsResp packet in response to a BindReceiver. |
|
QuerySMResp(SMPPPacket request)
Create a new QuerySMResp packet in response to a BindReceiver. |
|
ReplaceSMResp(SMPPPacket request)
Create a new ReplaceSMResp packet in response to a BindReceiver. |
|
SMPPPacket(SMPPPacket request)
Create a new SMPPPacket that represents a response to the specified packet. |
|
SubmitMultiResp(SMPPPacket request)
Create a new SubmitMultiResp packet in response to a BindReceiver. |
|
SubmitSMResp(SMPPPacket request)
Create a new SubmitSMResp packet in response to a SubmitSM. |
|
UnbindResp(SMPPPacket request)
Create a new UnbindResp packet in response to a BindReceiver. |
|
| Uses of SMPPPacket in org.mobicents.protocols.smpp.net |
|---|
| Methods in org.mobicents.protocols.smpp.net that return SMPPPacket | |
|---|---|
SMPPPacket |
ReplayLink.getNextOutbound()
|
SMPPPacket |
SmscLink.read()
Read the next SMPP packet from the underlying link. |
SMPPPacket |
ReplayLink.read()
|
SMPPPacket |
AbstractStreamLink.read()
Read the next SMPP packet from the SMSC. |
| Methods in org.mobicents.protocols.smpp.net with parameters of type SMPPPacket | |
|---|---|
void |
ObjectLink.add(SMPPPacket pak)
|
void |
SmscLink.write(SMPPPacket packet,
boolean withOptionalParams)
Send an SMPP packet to the SMSC. |
void |
ReplayLink.write(SMPPPacket packet,
boolean withOptionalParams)
|
void |
ObjectLink.write(SMPPPacket pak,
boolean withOptional)
|
void |
AbstractStreamLink.write(SMPPPacket pak,
boolean withOptional)
Send a packet to the SMSC. |
| Uses of SMPPPacket in org.mobicents.protocols.smpp.util |
|---|
| Methods in org.mobicents.protocols.smpp.util that return SMPPPacket | |
|---|---|
SMPPPacket |
PacketFactory.newInstance(int id)
Create a new instance of the appropriate sub class of SMPPPacket. |
SMPPPacket |
PacketFactory.newResponse(SMPPPacket packet)
Get a response packet for the specified request. |
SMPPPacket |
SyncWrapper.readNextPacket(boolean block)
Read the next packet from the connection. |
SMPPPacket |
SyncWrapper.sendPacket(SMPPPacket packet)
Send a packet to the SMSC and wait for its response. |
| Methods in org.mobicents.protocols.smpp.util with parameters of type SMPPPacket | |
|---|---|
SMPPPacket |
PacketFactory.newResponse(SMPPPacket packet)
Get a response packet for the specified request. |
void |
SyncWrapper.packetReceived(Session source,
SMPPPacket packet)
|
void |
AutoResponder.packetReceived(Session source,
SMPPPacket packet)
|
SMPPPacket |
SyncWrapper.sendPacket(SMPPPacket packet)
Send a packet to the SMSC and wait for its response. |
| Method parameters in org.mobicents.protocols.smpp.util with type arguments of type SMPPPacket | |
|---|---|
void |
PacketFactory.registerVendorPacket(int id,
Class<? extends SMPPPacket> requestType,
Class<? extends SMPPPacket> responseType)
Register a vendor packet with the factory. |
void |
PacketFactory.registerVendorPacket(int id,
Class<? extends SMPPPacket> requestType,
Class<? extends SMPPPacket> responseType)
Register a vendor packet with the factory. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||