Exemplo n.º 1
0
 public ActionForward addInquiryAnswer(
     ActionMapping mapping,
     ActionForm form,
     HttpServletRequest request,
     HttpServletResponse response)
     throws Exception {
   final CerimonyInquiry cerimonyInquiry = getDomainObject(request, "cerimonyInquiryId");
   final CerimonyInquiryAnswer cerimonyInquiryAnswer = cerimonyInquiry.createNewAnswer();
   return editInquiryAnswer(mapping, request, cerimonyInquiryAnswer);
 }