Package org.cyclos.services.messaging
Interface SmsService
-
- All Superinterfaces:
Service
- All Known Subinterfaces:
SmsServiceLocal
public interface SmsService extends Service
Service used to manage SMS messages
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InboundSmsMessageVOgetInboundMessageData(@NotNull Long smsMessageId)Returns the inbound sms message with the given idOutboundSmsMessageVOgetOutboundMessageData(@NotNull Long smsMessageId)Returns the outbound sms message with the given idPage<InboundSmsMessageVO>searchInboundMessages(@NotNull InboundSmsQuery query)Searches for sms inbound messages according to the given queryPage<OutboundSmsMessageVO>searchOutboundMessages(@NotNull OutboundSmsQuery query)Searches for sms outbound messages according to the given query
-
-
-
Method Detail
-
getInboundMessageData
InboundSmsMessageVO getInboundMessageData(@NotNull @NotNull Long smsMessageId) throws FrameworkException
Returns the inbound sms message with the given id- Throws:
FrameworkException
-
getOutboundMessageData
OutboundSmsMessageVO getOutboundMessageData(@NotNull @NotNull Long smsMessageId) throws FrameworkException
Returns the outbound sms message with the given id- Throws:
FrameworkException
-
searchInboundMessages
Page<InboundSmsMessageVO> searchInboundMessages(@NotNull @NotNull InboundSmsQuery query) throws FrameworkException
Searches for sms inbound messages according to the given query- Throws:
FrameworkException
-
searchOutboundMessages
Page<OutboundSmsMessageVO> searchOutboundMessages(@NotNull @NotNull OutboundSmsQuery query) throws FrameworkException
Searches for sms outbound messages according to the given query- Throws:
FrameworkException
-
-