You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2013/02/08 11:00:16 UTC

svn commit: r1443908 - in /syncope/trunk/common/src/main/java/org/apache/syncope/common/services: ConfigurationService.java ReportService.java

Author: ilgrosso
Date: Fri Feb  8 10:00:15 2013
New Revision: 1443908

URL: http://svn.apache.org/r1443908
Log:
Mapping @Path for streams as discussed in ML

Modified:
    syncope/trunk/common/src/main/java/org/apache/syncope/common/services/ConfigurationService.java
    syncope/trunk/common/src/main/java/org/apache/syncope/common/services/ReportService.java

Modified: syncope/trunk/common/src/main/java/org/apache/syncope/common/services/ConfigurationService.java
URL: http://svn.apache.org/viewvc/syncope/trunk/common/src/main/java/org/apache/syncope/common/services/ConfigurationService.java?rev=1443908&r1=1443907&r2=1443908&view=diff
==============================================================================
--- syncope/trunk/common/src/main/java/org/apache/syncope/common/services/ConfigurationService.java (original)
+++ syncope/trunk/common/src/main/java/org/apache/syncope/common/services/ConfigurationService.java Fri Feb  8 10:00:15 2013
@@ -47,7 +47,7 @@ public interface ConfigurationService {
      * @return Returns configuration as an downloadable content.xml database export file.
      */
     @GET
-    @Path("all/export")
+    @Path("stream")
     Response dbExport();
 
     /**

Modified: syncope/trunk/common/src/main/java/org/apache/syncope/common/services/ReportService.java
URL: http://svn.apache.org/viewvc/syncope/trunk/common/src/main/java/org/apache/syncope/common/services/ReportService.java?rev=1443908&r1=1443907&r2=1443908&view=diff
==============================================================================
--- syncope/trunk/common/src/main/java/org/apache/syncope/common/services/ReportService.java (original)
+++ syncope/trunk/common/src/main/java/org/apache/syncope/common/services/ReportService.java Fri Feb  8 10:00:15 2013
@@ -77,7 +77,7 @@ public interface ReportService {
      * @return Returns a stream for content download
      */
     @GET
-    @Path("executions/{executionId}/dbDump")
+    @Path("executions/{executionId}/stream")
     Response exportExecutionResult(@PathParam("executionId") Long executionId,
             @QueryParam("format") ReportExecExportFormat fmt);