use of org.exolab.castor.mapping.Mapping in project OpenClinica by OpenClinica.
the class MetaDataReportBean method handleLoadCastor.
private String handleLoadCastor(RulesPostImportContainer rpic) {
try {
// Create Mapping
Mapping mapping = new Mapping();
mapping.loadMapping(getCoreResources().getURL("mappingMarshallerMetadata.xml"));
// Create XMLContext
XMLContext xmlContext = new XMLContext();
xmlContext.setProperty(XMLConfiguration.NAMESPACES, "true");
xmlContext.addMapping(mapping);
StringWriter writer = new StringWriter();
Marshaller marshaller = xmlContext.createMarshaller();
// marshaller.setNamespaceMapping("castor", "http://castor.org/sample/mapping/");
marshaller.setWriter(writer);
marshaller.marshal(rpic);
String result = writer.toString();
String newResult = result.replace("<?xml version=\"1.0\" encoding=\"UTF-8\"?>", "");
return newResult;
} catch (FileNotFoundException ex) {
throw new OpenClinicaSystemException(ex.getMessage(), ex.getCause());
} catch (IOException ex) {
throw new OpenClinicaSystemException(ex.getMessage(), ex.getCause());
} catch (MarshalException e) {
throw new OpenClinicaSystemException(e.getMessage(), e.getCause());
} catch (ValidationException e) {
throw new OpenClinicaSystemException(e.getMessage(), e.getCause());
} catch (MappingException e) {
throw new OpenClinicaSystemException(e.getMessage(), e.getCause());
} catch (Exception e) {
throw new OpenClinicaSystemException(e.getMessage(), e.getCause());
}
}
use of org.exolab.castor.mapping.Mapping in project OpenClinica by OpenClinica.
the class XformParser method marshall.
/*
* public XformParser() throws Exception { try { xmlContext = new XMLContext(); Mapping mapping =
* xmlContext.createMapping(); mapping.loadMapping(coreResources.getURL("openRosaXFormMapping.xml"));
* xmlContext.addMapping(mapping); } catch (Exception e) { log.error(e.getMessage());
* log.error(ExceptionUtils.getStackTrace(e)); throw new Exception(e); } }
*/
public String marshall(Html html) throws Exception {
StringWriter writer = new StringWriter();
xmlContext = new XMLContext();
Mapping mapping = xmlContext.createMapping();
mapping.loadMapping(coreResources.getURL("openRosaXFormMapping.xml"));
xmlContext.addMapping(mapping);
Marshaller marshaller = xmlContext.createMarshaller();
marshaller.setNamespaceMapping("h", "http://www.w3.org/1999/xhtml");
marshaller.setNamespaceMapping("jr", "http://openrosa.org/javarosa");
marshaller.setNamespaceMapping("xsd", "http://www.w3.org/2001/XMLSchema");
marshaller.setNamespaceMapping("ev", "http://www.w3.org/2001/xml-events");
marshaller.setNamespaceMapping("", "http://www.w3.org/2002/xforms");
marshaller.setWriter(writer);
marshaller.marshal(html);
String xform = writer.toString();
return xform;
}
use of org.exolab.castor.mapping.Mapping in project OpenClinica by OpenClinica.
the class XformParser method unMarshall.
public Html unMarshall(String xml) throws Exception {
xmlContext = new XMLContext();
Mapping mapping = xmlContext.createMapping();
mapping.loadMapping(coreResources.getURL("xformMapping.xml"));
xmlContext.addMapping(mapping);
// XML to Object
Reader reader = new StringReader(xml);
Unmarshaller unmarshaller = xmlContext.createUnmarshaller();
unmarshaller.setClass(Html.class);
unmarshaller.setWhitespacePreserve(false);
Html html = (Html) unmarshaller.unmarshal(reader);
reader.close();
return html;
}
use of org.exolab.castor.mapping.Mapping in project OpenClinica by OpenClinica.
the class DownloadRuleSetXmlServlet method handleLoadCastor.
private FileWriter handleLoadCastor(FileWriter writer, RulesPostImportContainer rpic) {
try {
// Create Mapping
Mapping mapping = new Mapping();
mapping.loadMapping(getCoreResources().getURL("mappingMarshaller.xml"));
// Create XMLContext
XMLContext xmlContext = new XMLContext();
xmlContext.addMapping(mapping);
Marshaller marshaller = xmlContext.createMarshaller();
marshaller.setWriter(writer);
marshaller.marshal(rpic);
return writer;
} catch (FileNotFoundException ex) {
throw new OpenClinicaSystemException(ex.getMessage(), ex.getCause());
} catch (IOException ex) {
throw new OpenClinicaSystemException(ex.getMessage(), ex.getCause());
} catch (MarshalException e) {
throw new OpenClinicaSystemException(e.getMessage(), e.getCause());
} catch (ValidationException e) {
throw new OpenClinicaSystemException(e.getMessage(), e.getCause());
} catch (MappingException e) {
throw new OpenClinicaSystemException(e.getMessage(), e.getCause());
} catch (Exception e) {
throw new OpenClinicaSystemException(e.getMessage(), e.getCause());
}
}
use of org.exolab.castor.mapping.Mapping in project OpenClinica by OpenClinica.
the class ImportSpringJob method processData.
/*
* processData, a method which should take in all XML files, check to see if they were imported previously, ? insert
* them into the database if not, and return a message which will go to audit and to the end user.
*/
private ArrayList<String> processData(File[] dest, DataSource dataSource, ResourceBundle respage, ResourceBundle resword, UserAccountBean ub, StudyBean studyBean, File destDirectory, TriggerBean triggerBean, RuleSetServiceInterface ruleSetService) throws Exception {
StringBuffer msg = new StringBuffer();
StringBuffer auditMsg = new StringBuffer();
Mapping myMap = new Mapping();
String propertiesPath = CoreResources.PROPERTIES_DIR;
new File(propertiesPath + File.separator + "ODM1-3-0.xsd");
File xsdFile2 = new File(propertiesPath + File.separator + "ODM1-2-1.xsd");
// @pgawade 18-April-2011 Fix for issue 8394
String ODM_MAPPING_DIR_path = CoreResources.ODM_MAPPING_DIR;
myMap.loadMapping(ODM_MAPPING_DIR_path + File.separator + "cd_odm_mapping.xml");
Unmarshaller um1 = new Unmarshaller(myMap);
ODMContainer odmContainer = new ODMContainer();
// File("log.txt")));
for (File f : dest) {
// >> tbh
boolean fail = false;
// all whitespace, one or more times
String regex = "\\s+";
// replace with underscores
String replacement = "_";
String pattern = "yyyy" + File.separator + "MM" + File.separator + "dd" + File.separator + "HHmmssSSS" + File.separator;
SimpleDateFormat sdfDir = new SimpleDateFormat(pattern);
String generalFileDir = sdfDir.format(new java.util.Date());
File logDestDirectory = new File(destDirectory + File.separator + generalFileDir + f.getName().replaceAll(regex, replacement) + ".log.txt");
if (!logDestDirectory.isDirectory()) {
logger.debug("creating new dir: " + logDestDirectory.getAbsolutePath());
logDestDirectory.mkdirs();
}
File newFile = new File(logDestDirectory, "log.txt");
// FileOutputStream out = new FileOutputStream(new
// File(logDestDirectory, "log.txt"));
// BufferedWriter out = null;
// wrap the below in a try-catch?
BufferedWriter out = new BufferedWriter(new FileWriter(newFile));
// << tbh 06/2010
if (f != null) {
String firstLine = "<P>" + f.getName() + ": ";
msg.append(firstLine);
out.write(firstLine);
auditMsg.append(firstLine);
} else {
msg.append("<P>" + respage.getString("unreadable_file") + ": ");
out.write("<P>" + respage.getString("unreadable_file") + ": ");
auditMsg.append("<P>" + respage.getString("unreadable_file") + ": ");
}
try {
// schemaValidator.validateAgainstSchema(f, xsdFile);
odmContainer = (ODMContainer) um1.unmarshal(new FileReader(f));
logger.debug("Found crf data container for study oid: " + odmContainer.getCrfDataPostImportContainer().getStudyOID());
logger.debug("found length of subject list: " + odmContainer.getCrfDataPostImportContainer().getSubjectData().size());
} catch (Exception me1) {
// fail against one, try another
try {
schemaValidator.validateAgainstSchema(f, xsdFile2);
// for backwards compatibility, we also try to validate vs
// 1.2.1 ODM 06/2008
odmContainer = (ODMContainer) um1.unmarshal(new FileReader(f));
} catch (Exception me2) {
// not sure if we want to report me2
MessageFormat mf = new MessageFormat("");
mf.applyPattern(respage.getString("your_xml_is_not_well_formed"));
Object[] arguments = { me1.getMessage() };
msg.append(mf.format(arguments) + "<br/>");
auditMsg.append(mf.format(arguments) + "<br/>");
// break here with an exception
logger.error("found an error with XML: " + msg.toString());
// continue looping
continue;
}
}
// next: check, then import
List<String> errors = getImportCRFDataService(dataSource).validateStudyMetadata(odmContainer, studyBean.getId());
// the user could be in any study ...
if (errors != null) {
if (errors.size() > 0) {
out.write("<P>Errors:<br/>");
for (String error : errors) {
out.write(error + "<br/>");
}
out.write("</P>");
// fail = true;
// forwardPage(Page.IMPORT_CRF_DATA);
// break here with an exception
// throw new Exception("Your XML in the file " + f.getName()
// + " was well formed, but generated metadata errors: " +
// errors.toString());
// msg.append("Your XML in the file " + f.getName() +
// " was well formed, but generated metadata errors: " +
// errors.toString());
MessageFormat mf = new MessageFormat("");
mf.applyPattern(respage.getString("your_xml_in_the_file"));
Object[] arguments = { f.getName(), errors.size() };
auditMsg.append(mf.format(arguments) + "<br/>");
msg.append(mf.format(arguments) + "<br/>");
auditMsg.append("You can see the log file <a href='" + SQLInitServlet.getField("sysURL.base") + "ViewLogMessage?n=" + generalFileDir + f.getName() + "&tn=" + triggerBean.getName() + "&gn=1'>here</a>.<br/>");
msg.append("You can see the log file <a href='" + SQLInitServlet.getField("sysURL.base") + "ViewLogMessage?n=" + generalFileDir + f.getName() + "&tn=" + triggerBean.getName() + "&gn=1'>here</a>.<br/>");
// auditMsg.append("Your XML in the file " + f.getName() +
// " was well formed, but generated " + errors.size() +
// " metadata errors." + "<br/>");
out.close();
continue;
} else {
msg.append(respage.getString("passed_study_check") + "<br/>");
msg.append(respage.getString("passed_oid_metadata_check") + "<br/>");
auditMsg.append(respage.getString("passed_study_check") + "<br/>");
auditMsg.append(respage.getString("passed_oid_metadata_check") + "<br/>");
}
}
ImportCRFInfoContainer importCrfInfo = new ImportCRFInfoContainer(odmContainer, dataSource);
// validation errors, the same as in the ImportCRFDataServlet. DRY?
List<EventCRFBean> eventCRFBeans = getImportCRFDataService(dataSource).fetchEventCRFBeans(odmContainer, ub);
ArrayList<Integer> permittedEventCRFIds = new ArrayList<Integer>();
Boolean eventCRFStatusesValid = getImportCRFDataService(dataSource).eventCRFStatusesValid(odmContainer, ub);
List<DisplayItemBeanWrapper> displayItemBeanWrappers = new ArrayList<DisplayItemBeanWrapper>();
HashMap<String, String> totalValidationErrors = new HashMap<String, String>();
HashMap<String, String> hardValidationErrors = new HashMap<String, String>();
// The following map is used for setting the EventCRF status post import.
HashMap<Integer, String> importedCRFStatuses = getImportCRFDataService(dataSource).fetchEventCRFStatuses(odmContainer);
// -- does the event already exist? if not, fail
if (eventCRFBeans == null) {
fail = true;
msg.append(respage.getString("no_event_status_matching"));
out.write(respage.getString("no_event_status_matching"));
out.close();
continue;
} else if (!eventCRFBeans.isEmpty()) {
logger.debug("found a list of eventCRFBeans: " + eventCRFBeans.toString());
for (EventCRFBean eventCRFBean : eventCRFBeans) {
DataEntryStage dataEntryStage = eventCRFBean.getStage();
Status eventCRFStatus = eventCRFBean.getStatus();
logger.debug("Event CRF Bean: id " + eventCRFBean.getId() + ", data entry stage " + dataEntryStage.getName() + ", status " + eventCRFStatus.getName());
if (eventCRFStatus.equals(Status.AVAILABLE) || dataEntryStage.equals(DataEntryStage.INITIAL_DATA_ENTRY) || dataEntryStage.equals(DataEntryStage.INITIAL_DATA_ENTRY_COMPLETE) || dataEntryStage.equals(DataEntryStage.DOUBLE_DATA_ENTRY_COMPLETE) || dataEntryStage.equals(DataEntryStage.DOUBLE_DATA_ENTRY)) {
permittedEventCRFIds.add(new Integer(eventCRFBean.getId()));
} else {
// break out here with an exception
// throw new
// Exception("Your listed Event CRF in the file " +
// f.getName() +
// " does not exist, or has already been locked for import."
// );
MessageFormat mf = new MessageFormat("");
mf.applyPattern(respage.getString("your_listed_crf_in_the_file"));
Object[] arguments = { f.getName() };
msg.append(mf.format(arguments) + "<br/>");
auditMsg.append(mf.format(arguments) + "<br/>");
out.write(mf.format(arguments) + "<br/>");
out.close();
continue;
}
}
if (eventCRFBeans.size() >= permittedEventCRFIds.size()) {
msg.append(respage.getString("passed_event_crf_status_check") + "<br/>");
auditMsg.append(respage.getString("passed_event_crf_status_check") + "<br/>");
} else {
fail = true;
msg.append(respage.getString("the_event_crf_not_correct_status") + "<br/>");
auditMsg.append(respage.getString("the_event_crf_not_correct_status") + "<br/>");
}
// create a 'fake' request to generate the validation errors
// here, tbh 05/2009
MockHttpServletRequest request = new MockHttpServletRequest();
// Locale locale = new Locale("en-US");
request.addPreferredLocale(locale);
try {
List<DisplayItemBeanWrapper> tempDisplayItemBeanWrappers = new ArrayList<DisplayItemBeanWrapper>();
tempDisplayItemBeanWrappers = getImportCRFDataService(dataSource).lookupValidationErrors(request, odmContainer, ub, totalValidationErrors, hardValidationErrors, permittedEventCRFIds);
logger.debug("size of total validation errors: " + totalValidationErrors.size());
displayItemBeanWrappers.addAll(tempDisplayItemBeanWrappers);
} catch (NullPointerException npe1) {
// what if you have 2 event crfs but the third is a fake?
npe1.printStackTrace();
fail = true;
logger.debug("threw a NPE after calling lookup validation errors");
msg.append(respage.getString("an_error_was_thrown_while_validation_errors") + "<br/>");
auditMsg.append(respage.getString("an_error_was_thrown_while_validation_errors") + "<br/>");
out.write(respage.getString("an_error_was_thrown_while_validation_errors") + "<br/>");
logger.debug("=== threw the null pointer, import ===");
} catch (OpenClinicaException oce1) {
fail = true;
logger.error("threw an OCE after calling lookup validation errors " + oce1.getOpenClinicaMessage());
msg.append(oce1.getOpenClinicaMessage() + "<br/>");
// auditMsg.append(oce1.getOpenClinicaMessage() + "<br/>");
out.write(oce1.getOpenClinicaMessage() + "<br/>");
}
} else if (!eventCRFStatusesValid) {
fail = true;
msg.append(respage.getString("the_event_crf_not_correct_status"));
out.write(respage.getString("the_event_crf_not_correct_status"));
out.close();
continue;
} else {
// fail = true;
// break here with an exception
msg.append(respage.getString("no_event_crfs_matching_the_xml_metadata") + "<br/>");
// auditMsg.append(respage.getString("no_event_crfs_matching_the_xml_metadata")
// + "<br/>");
out.write(respage.getString("no_event_crfs_matching_the_xml_metadata") + "<br/>");
// throw new Exception(msg.toString());
out.close();
continue;
}
ArrayList<SubjectDataBean> subjectData = odmContainer.getCrfDataPostImportContainer().getSubjectData();
if (!hardValidationErrors.isEmpty()) {
String messageHardVals = triggerService.generateHardValidationErrorMessage(subjectData, hardValidationErrors, false);
// byte[] messageHardValsBytes = messageHardVals.getBytes();
out.write(messageHardVals);
msg.append(respage.getString("file_generated_hard_validation_error"));
// here we create a file and append the data, tbh 06/2010
fail = true;
} else {
if (!totalValidationErrors.isEmpty()) {
String totalValErrors = triggerService.generateHardValidationErrorMessage(subjectData, totalValidationErrors, false);
out.write(totalValErrors);
// here we also append data to the file, tbh 06/2010
}
String validMsgs = triggerService.generateValidMessage(subjectData, totalValidationErrors);
out.write(validMsgs);
// third place to append data to the file? tbh 06/2010
}
// << tbh 05/2010, bug #5110, leave off the detailed reports
out.close();
if (fail) {
// forwardPage(Page.IMPORT_CRF_DATA);
// break here with an exception
// throw new Exception("Problems encountered with file " +
// f.getName() + ": " + msg.toString());
MessageFormat mf = new MessageFormat("");
mf.applyPattern(respage.getString("problems_encountered_with_file"));
Object[] arguments = { f.getName(), msg.toString() };
msg = new StringBuffer(mf.format(arguments) + "<br/>");
out.close();
auditMsg.append("You can see the log file <a href='" + SQLInitServlet.getField("sysURL.base") + "ViewLogMessage?n=" + generalFileDir + f.getName() + "&tn=" + triggerBean.getName() + "&gn=1'>here</a>.<br/>");
msg.append("You can see the log file <a href='" + SQLInitServlet.getField("sysURL.base") + "ViewLogMessage?n=" + generalFileDir + f.getName() + "&tn=" + triggerBean.getName() + "&gn=1'>here</a>.<br/>");
// ": " + msg.toString() + "<br/>");
continue;
} else {
msg.append(respage.getString("passing_crf_edit_checks") + "<br/>");
auditMsg.append(respage.getString("passing_crf_edit_checks") + "<br/>");
// session.setAttribute("importedData",
// displayItemBeanWrappers);
// session.setAttribute("validationErrors",
// totalValidationErrors);
// session.setAttribute("hardValidationErrors",
// hardValidationErrors);
// above are to be sent to the user, but what kind of message
// can we make of them here?
// if hard validation errors are present, we only generate one
// table
// otherwise, we generate the other two: validation errors and
// valid data
logger.debug("found total validation errors: " + totalValidationErrors.size());
SummaryStatsBean ssBean = getImportCRFDataService(dataSource).generateSummaryStatsBean(odmContainer, displayItemBeanWrappers, importCrfInfo);
// msg.append("===+");
// the above is a special key that we will use to split the
// message into two parts
// a shorter version for the audit and
// a longer version for the email
msg.append(triggerService.generateSummaryStatsMessage(ssBean, respage) + "<br/>");
// session.setAttribute("summaryStats", ssBean);
// will have to set hard edit checks here as well
// session.setAttribute("subjectData",
// ArrayList<SubjectDataBean> subjectData =
// odmContainer.getCrfDataPostImportContainer().getSubjectData();
// forwardPage(Page.VERIFY_IMPORT_SERVLET);
// instead of forwarding, go ahead and save it all, sending a
// message at the end
msg.append(triggerService.generateSkippedCRFMessage(importCrfInfo, resword) + "<br/>");
// setup ruleSets to run if applicable
List<ImportDataRuleRunnerContainer> containers = this.ruleRunSetup(dataSource, studyBean, ub, ruleSetService, odmContainer);
CrfBusinessLogicHelper crfBusinessLogicHelper = new CrfBusinessLogicHelper(dataSource);
for (DisplayItemBeanWrapper wrapper : displayItemBeanWrappers) {
boolean resetSDV = false;
int eventCrfBeanId = -1;
EventCRFBean eventCrfBean = new EventCRFBean();
logger.debug("right before we check to make sure it is savable: " + wrapper.isSavable());
if (wrapper.isSavable()) {
ArrayList<Integer> eventCrfInts = new ArrayList<Integer>();
logger.debug("wrapper problems found : " + wrapper.getValidationErrors().toString());
itemDataDao.setFormatDates(false);
for (DisplayItemBean displayItemBean : wrapper.getDisplayItemBeans()) {
eventCrfBeanId = displayItemBean.getData().getEventCRFId();
eventCrfBean = (EventCRFBean) eventCrfDao.findByPK(eventCrfBeanId);
logger.debug("found value here: " + displayItemBean.getData().getValue());
logger.debug("found status here: " + eventCrfBean.getStatus().getName());
ItemDataBean itemDataBean = new ItemDataBean();
itemDataBean = itemDataDao.findByItemIdAndEventCRFIdAndOrdinal(displayItemBean.getItem().getId(), eventCrfBean.getId(), displayItemBean.getData().getOrdinal());
if (wrapper.isOverwrite() && itemDataBean.getStatus() != null) {
logger.debug("just tried to find item data bean on item name " + displayItemBean.getItem().getName());
if (!itemDataBean.getValue().equals(displayItemBean.getData().getValue()))
resetSDV = true;
itemDataBean.setUpdatedDate(new Date());
itemDataBean.setUpdater(ub);
itemDataBean.setValue(displayItemBean.getData().getValue());
// set status?
itemDataDao.update(itemDataBean);
logger.debug("updated: " + itemDataBean.getItemId());
// need to set pk here in order to create dn
displayItemBean.getData().setId(itemDataBean.getId());
} else {
resetSDV = true;
itemDataDao.create(displayItemBean.getData());
logger.debug("created: " + displayItemBean.getData().getItemId());
ItemDataBean itemDataBean2 = itemDataDao.findByItemIdAndEventCRFIdAndOrdinal(displayItemBean.getItem().getId(), eventCrfBean.getId(), displayItemBean.getData().getOrdinal());
logger.debug("found: id " + itemDataBean2.getId() + " name " + itemDataBean2.getName());
displayItemBean.getData().setId(itemDataBean2.getId());
}
ItemDAO idao = new ItemDAO(dataSource);
ItemBean ibean = (ItemBean) idao.findByPK(displayItemBean.getData().getItemId());
logger.debug("*** checking for validation errors: " + ibean.getName());
String itemOid = displayItemBean.getItem().getOid() + "_" + wrapper.getStudyEventRepeatKey() + "_" + displayItemBean.getData().getOrdinal() + "_" + wrapper.getStudySubjectOid();
if (wrapper.getValidationErrors().containsKey(itemOid)) {
ArrayList messageList = (ArrayList) wrapper.getValidationErrors().get(itemOid);
for (int iter = 0; iter < messageList.size(); iter++) {
String message = (String) messageList.get(iter);
DiscrepancyNoteBean parentDn = createDiscrepancyNote(ibean, message, eventCrfBean, displayItemBean, null, ub, dataSource, studyBean);
createDiscrepancyNote(ibean, message, eventCrfBean, displayItemBean, parentDn.getId(), ub, dataSource, studyBean);
logger.debug("*** created disc note with message: " + message);
// displayItemBean);
}
}
// Update CRF status
if (!eventCrfInts.contains(new Integer(eventCrfBean.getId()))) {
String eventCRFStatus = importedCRFStatuses.get(new Integer(eventCrfBean.getId()));
if (eventCRFStatus != null && eventCRFStatus.equals(DataEntryStage.INITIAL_DATA_ENTRY.getName()) && eventCrfBean.getStatus().isAvailable()) {
crfBusinessLogicHelper.markCRFStarted(eventCrfBean, ub);
} else {
crfBusinessLogicHelper.markCRFComplete(eventCrfBean, ub);
}
logger.debug("*** just updated event crf bean: " + eventCrfBean.getId());
eventCrfInts.add(new Integer(eventCrfBean.getId()));
}
}
itemDataDao.setFormatDates(true);
// Reset the SDV status if item data has been changed or added
if (eventCrfBean != null && resetSDV)
eventCrfDao.setSDVStatus(false, ub.getId(), eventCrfBean.getId());
}
}
// msg.append("===+");
msg.append(respage.getString("data_has_been_successfully_import") + "<br/>");
auditMsg.append(respage.getString("data_has_been_successfully_import") + "<br/>");
// MessageFormat mf = new MessageFormat("");
String linkMessage = respage.getString("you_can_review_the_data") + SQLInitServlet.getField("sysURL.base") + respage.getString("you_can_review_the_data_2") + SQLInitServlet.getField("sysURL.base") + respage.getString("you_can_review_the_data_3") + generalFileDir + f.getName() + "&tn=" + triggerBean.getFullName() + "&gn=1" + respage.getString("you_can_review_the_data_4") + "<br/>";
// mf.applyPattern(respage.getString("you_can_review_the_data"));
// Object[] arguments = {
// SQLInitServlet.getField("sysURL.base"),
// SQLInitServlet.getField("sysURL.base"), f.getName() };
msg.append(linkMessage);
auditMsg.append(linkMessage);
// was here but is now moved up, tbh
// String finalLine =
// "<p>You can review the entered data <a href='" +
// SQLInitServlet.getField("sysURL.base") +
// "ListStudySubjects'>here</a>.";
// >> tbh additional message
// "you can review the validation messages here" <-- where
// 'here' is a link to view an external file
// i.e. /ViewExternal?n=file_name.txt
// << tbh 06/2010
// msg.append(finalLine);
// auditMsg.append(finalLine);
auditMsg.append(this.runRules(studyBean, ub, containers, ruleSetService, ExecutionMode.SAVE));
}
}
// end for loop
// is the writer still not closed? try to close it
ArrayList<String> retList = new ArrayList<String>();
retList.add(msg.toString());
retList.add(auditMsg.toString());
// msg.toString();
return retList;
}
Aggregations