Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register
Show
Ignore:
Timestamp:
05/12/08 07:34:55 (4 months ago)
Author:
dkayiwa
Message:

xforms module: upgrading to use 1.2.04 version of the openmrs api

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs-modules/xforms/trunk/src/org/openmrs/module/xforms/download/XformDownloadManager.java

    r3482 r4171  
    3232         * @param actionUrl - the URL to post to after data entry. 
    3333         * @param os - the stream. 
    34          * @throws Exception 
     34         * @throws Exception   
    3535         */ 
    3636        public static void downloadXforms(String actionUrl, OutputStream os) throws Exception{ 
     
    4343                SerializableData sr = (SerializableData)OpenmrsClassLoader.getInstance().loadClass(className).newInstance(); 
    4444                sr.serialize(new DataOutputStream(os), getXmlForms(actionUrl)); 
    45                  
    46                 //Context.closeSession(); 
    4745        } 
    4846