Package org.openmrs.module.htmlformentry.FormEntryContext

Examples of org.openmrs.module.htmlformentry.FormEntryContext.Mode


                                                @RequestParam(value="encounterModifiedTimestamp", required=false) Long encounterModifiedTimestamp,
                                                @RequestParam(value="hasChangedInd", required=false) String hasChangedInd) throws Exception {

      long ts = System.currentTimeMillis();

        Mode mode = Mode.VIEW;
     
      Integer personId = null;
     
      if (StringUtils.hasText(request.getParameter("personId"))) {
        personId = Integer.valueOf(request.getParameter("personId"));
View Full Code Here

TOP

Related Classes of org.openmrs.module.htmlformentry.FormEntryContext.Mode

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.