Skip to content

Instantly share code, notes, and snippets.

@jjungnickel
Created February 4, 2010 16:26
Show Gist options
  • Save jjungnickel/294830 to your computer and use it in GitHub Desktop.
Save jjungnickel/294830 to your computer and use it in GitHub Desktop.
Integer userId = transportConfiguration.getInteger("userId");
String responseText = transportConfiguration.getString("responseText");
SmsMessage originalMessage = job.getSmsMessage();
SmsMessage autoResponse = originalMessage.reply();
autoResponse.setUserId(userId);
autoResponse.setMessage(responseText);
jmsTemplate.send("input", new StandardSmsMessageCreator(autoResponse, new TransportProperties()));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment