You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by gi...@apache.org on 2015/01/09 14:35:11 UTC

[2/2] syncope git commit: [SYNCOPE-627] Cleaning workflow editor from route management

[SYNCOPE-627] Cleaning workflow editor from route management


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/25bb5c9d
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/25bb5c9d
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/25bb5c9d

Branch: refs/heads/master
Commit: 25bb5c9d39061de6a8d95a29d9a3761f991abe33
Parents: 3838763
Author: giacomolm <gi...@hotmail.it>
Authored: Fri Jan 9 14:34:39 2015 +0100
Committer: giacomolm <gi...@hotmail.it>
Committed: Fri Jan 9 14:34:39 2015 +0100

----------------------------------------------------------------------
 .../org/apache/syncope/common/services/WorkflowService.java | 8 --------
 .../apache/syncope/core/services/WorkflowServiceImpl.java   | 9 ---------
 2 files changed, 17 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/25bb5c9d/common/src/main/java/org/apache/syncope/common/services/WorkflowService.java
----------------------------------------------------------------------
diff --git a/common/src/main/java/org/apache/syncope/common/services/WorkflowService.java b/common/src/main/java/org/apache/syncope/common/services/WorkflowService.java
index da70043..f6c55b4 100644
--- a/common/src/main/java/org/apache/syncope/common/services/WorkflowService.java
+++ b/common/src/main/java/org/apache/syncope/common/services/WorkflowService.java
@@ -87,12 +87,4 @@ public interface WorkflowService extends JAXRSService {
     @Consumes({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON })
     void importDefinition(@NotNull @PathParam("kind") SubjectType kind, @NotNull String definition);
     
-    @GET
-    @Path("{id}")
-    @Produces({ MediaType.APPLICATION_XML })
-    Response getRoute(@PathParam("id") Long id);
-    
-    @GET
-    @Produces({ MediaType.APPLICATION_XML })
-    Response getRoutes();
 }

http://git-wip-us.apache.org/repos/asf/syncope/blob/25bb5c9d/core/src/main/java/org/apache/syncope/core/services/WorkflowServiceImpl.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/syncope/core/services/WorkflowServiceImpl.java b/core/src/main/java/org/apache/syncope/core/services/WorkflowServiceImpl.java
index 7ab3691..8e8afa5 100644
--- a/core/src/main/java/org/apache/syncope/core/services/WorkflowServiceImpl.java
+++ b/core/src/main/java/org/apache/syncope/core/services/WorkflowServiceImpl.java
@@ -114,13 +114,4 @@ public class WorkflowServiceImpl extends AbstractServiceImpl implements Workflow
         }
     }
 
-    @Override
-    public Response getRoute(Long id) {
-        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
-    }
-
-    @Override
-    public Response getRoutes() {
-        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
-    }
 }