diff --git a/content/050_development/referral.md b/content/050_development/referral.md index d390c6c..79d4a8d 100644 --- a/content/050_development/referral.md +++ b/content/050_development/referral.md @@ -4,19 +4,19 @@ date: 2019-09-09T17:24:59-07:00 weight: 10 --- -The creation of e-Referrals (called "consultations" in OSCAR) is supported by the Java Server Pages (JSP) page `ConsulationFormRequest.JSP`. Received CDX documents are shown as possible attachments using the `showCdxDocumentArchive` JSP. +The creation of e-Referrals (called "consultations" in OSCAR) is supported by the Java Server Pages (JSP) page `ConsultationFormRequest.jsp`. Received CDX documents are shown as possible attachments using the `showCdxDocumentArchive` JSP. -The corresponding actions for sending CDX documents are implemented in `EctConsultationRequestFormAction.java`. Sent referral documents and received responses can be shown using `showCdxDocumentArchive` JSP. +The corresponding actions for sending CDX documents are implemented in `EctConsultationFormRequestAction.java`. Sent referral documents and received responses can be shown using `showCdxDocumentArchive` JSP. ```mermaid classDiagram - ConsultationFormRequest --> EctConsultationRequestFormAction : struts-config.example + ConsultationFormRequest --> EctConsultationFormRequestAction : struts-config.example ConsultationFormRequest : <> ConsultationFormRequest --> showCdxDocumentArchive : <> ConsultationFormRequest --> attachConsultation2 : <> attachConsultation2 --> showCdxDocumentArchive : <> - EctConsultationRequestFormAction --> ISubmitDoc - EctConsultationRequestFormAction : doCdxSend() + EctConsultationFormRequestAction --> ISubmitDoc + EctConsultationFormRequestAction : doCdxSend() ISubmitDoc : newDoc() ISubmitDoc : updateDoc()