new ValidationRule(ValidationRule.VALIDATION_TYPE_MANDATORY, "messageId", messageId),
new ValidationRule(ValidationRule.VALIDATION_TYPE_MANDATORY_JSON, "resFormat", resFormat),
};
if (checkRequestParameters(response, rules)) {
InboundMessage inboundMessage=new InboundMessage();
java.util.Date message1DT=makeUTCDateTime(2010, Calendar.NOVEMBER, 19, 12, 0, 0);
inboundMessage.setDateTimeAsDate(message1DT);
inboundMessage.setDestinationAddress("6789");
String messageId1="msg1";
inboundMessage.setMessageId(messageId1);
InboundMMSMessage inboundMMSMessage=new InboundMMSMessage();
inboundMMSMessage.setSubject("Rock Festival 2010");
inboundMMSMessage.setMessage("Making the somewhat shorter journey from Brighton, homegrown heroes Architects make their first festival appearance in this country in support of new album 'The Here And Now', which was released one week ago today. Never has an album been more aptly titled, with the band currently on the cover of Metal Hammer magazine while their latest single enjoys daytime play on national radio, and the album receives rave reviews across the rock media, earning it a top 75 chart position (57) in its first week. Frontman Sam Carter enthuses:");
inboundMessage.setInboundMMSMessage(inboundMMSMessage);
String resourceURL1=getRequestHostnameAndContext(request)+request.getServletPath()+"/1/messaging/inbound/registrations/"+urlEncode(registrationId)+"/messages/"+urlEncode(messageId1);
inboundMessage.setResourceURL(resourceURL1);
inboundMessage.setSenderAddress("tel:+1234567");
ObjectMapper mapper=new ObjectMapper();
String jsonResponse="{\"inboundMessage\":"+mapper.writeValueAsString(inboundMessage)+"}";
System.out.println("JSON section=\n"+jsonResponse);