dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #04171
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 1384: Minor fix
------------------------------------------------------------
revno: 1384
committer: Lars Helge Oeverland <larshelge@xxxxxxxxx>
branch nick: trunk
timestamp: Tue 2010-02-02 21:20:27 +0100
message:
Minor fix
modified:
dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/java/org/hisp/dhis/dd/action/pdf/ExportToPdfAction.java
dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/resources/META-INF/dhis/beans.xml
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription.
=== modified file 'dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/java/org/hisp/dhis/dd/action/pdf/ExportToPdfAction.java'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/java/org/hisp/dhis/dd/action/pdf/ExportToPdfAction.java 2009-08-20 08:17:49 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/java/org/hisp/dhis/dd/action/pdf/ExportToPdfAction.java 2010-02-02 20:20:27 +0000
@@ -31,11 +31,11 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
+import org.hisp.dhis.common.ServiceProvider;
import org.hisp.dhis.i18n.I18n;
import org.hisp.dhis.i18n.I18nFormat;
import org.hisp.dhis.importexport.ExportParams;
import org.hisp.dhis.importexport.ExportService;
-import org.hisp.dhis.importexport.ImportExportServiceManager;
import org.hisp.dhis.options.datadictionary.DataDictionaryModeManager;
import com.opensymphony.xwork2.Action;
@@ -61,11 +61,11 @@
// Dependencies
// -------------------------------------------------------------------------
- private ImportExportServiceManager serviceManager;
+ private ServiceProvider<ExportService> serviceProvider;
- public void setServiceManager( ImportExportServiceManager serviceManager )
+ public void setServiceProvider( ServiceProvider<ExportService> serviceProvider )
{
- this.serviceManager = serviceManager;
+ this.serviceProvider = serviceProvider;
}
private I18n i18n;
@@ -151,7 +151,7 @@
params.setI18n( i18n );
params.setFormat( format );
- ExportService exportService = serviceManager.getExportService( EXPORT_FORMAT_PDF );
+ ExportService exportService = serviceProvider.provide( EXPORT_FORMAT_PDF );
inputStream = exportService.exportData( params );
}
=== modified file 'dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/resources/META-INF/dhis/beans.xml'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/resources/META-INF/dhis/beans.xml 2010-01-20 13:36:10 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/resources/META-INF/dhis/beans.xml 2010-02-02 20:20:27 +0000
@@ -845,8 +845,8 @@
<bean id="org.hisp.dhis.dd.action.pdf.ExportToPdfAction" class="org.hisp.dhis.dd.action.pdf.ExportToPdfAction"
scope="prototype">
- <property name="serviceManager">
- <ref bean="org.hisp.dhis.importexport.ImportExportServiceManager" />
+ <property name="serviceProvider">
+ <ref bean="exportServiceProvider" />
</property>
</bean>