Package org.kuali.rice.krad.inquiry
Interface InquiryControllerService
- All Superinterfaces:
ControllerService
- All Known Implementing Classes:
InquiryControllerServiceImpl
Controller service that extends
ControllerService and adds
methods specific to inquiry views.- Author:
- Kuali Rice Team (rice.collab@kuali.org)
-
Method Summary
Modifier and TypeMethodDescriptionvoiddownloadBONote(InquiryForm form, javax.servlet.http.HttpServletResponse response) Invoked to download an attachment that has been uploaded for a note.voiddownloadCustomDataObjectAttachment(InquiryForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) When the data object is a custom object, streams the requested attachment back to the response.voiddownloadDataObjectAttachment(InquiryForm form, javax.servlet.http.HttpServletResponse response) When the data object is aPersistableAttachmentorPersistableAttachmentList, streams the selected attachment back to the response.Methods inherited from interface org.kuali.rice.krad.web.service.ControllerService
cancel, checkViewAuthorization, sessionTimeout, start
-
Method Details
-
downloadDataObjectAttachment
void downloadDataObjectAttachment(InquiryForm form, javax.servlet.http.HttpServletResponse response) When the data object is aPersistableAttachmentorPersistableAttachmentList, streams the selected attachment back to the response.- Parameters:
form- form instance containing the inquiry dataresponse- Http response for returning the attachment contents
-
downloadCustomDataObjectAttachment
void downloadCustomDataObjectAttachment(InquiryForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws Exception When the data object is a custom object, streams the requested attachment back to the response.- Parameters:
form- form instance containing the inquiry datarequest- Http request for sending the fileName, contentType, and fileContentDataObjFieldresponse- Http response for returning the attachment contents- Throws:
Exception
-
downloadBONote
Invoked to download an attachment that has been uploaded for a note.- Parameters:
form- form instance containing the note (and attachment) instanceresponse- http servlet response instance for sending back the attachment contents
-