Package org.openmrs.module.htmlformentry

Examples of org.openmrs.module.htmlformentry.CustomFormSubmissionAction


        @Override
        public void handleSubmission(FormEntrySession session, HttpServletRequest submission) {
            try {
                Class<?> actionClass = Context.loadClass(className);
                CustomFormSubmissionAction actionInstance = (CustomFormSubmissionAction) actionClass.newInstance();
                session.getSubmissionActions().addCustomFormSubmissionAction(actionInstance);
            } catch (Exception ex) {
                throw new IllegalStateException("Error loading/instantiating post submission action class " + className, ex);
            }
        }
View Full Code Here

TOP

Related Classes of org.openmrs.module.htmlformentry.CustomFormSubmissionAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.