コード例 #1
0
ファイル: AlumniCerimonyDA.java プロジェクト: afesteves/fenix
 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);
 }