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/15 17:41:31 UTC

svn commit: r1446679 - /syncope/trunk/console/src/main/java/org/apache/syncope/console/SyncopeSession.java

Author: ilgrosso
Date: Fri Feb 15 16:41:31 2013
New Revision: 1446679

URL: http://svn.apache.org/r1446679
Log:
[SYNCOPE-312] Fixing missing consideration of admin console by commit r1446632

Modified:
    syncope/trunk/console/src/main/java/org/apache/syncope/console/SyncopeSession.java

Modified: syncope/trunk/console/src/main/java/org/apache/syncope/console/SyncopeSession.java
URL: http://svn.apache.org/viewvc/syncope/trunk/console/src/main/java/org/apache/syncope/console/SyncopeSession.java?rev=1446679&r1=1446678&r2=1446679&view=diff
==============================================================================
--- syncope/trunk/console/src/main/java/org/apache/syncope/console/SyncopeSession.java (original)
+++ syncope/trunk/console/src/main/java/org/apache/syncope/console/SyncopeSession.java Fri Feb 15 16:41:31 2013
@@ -34,6 +34,7 @@ import org.apache.syncope.client.service
 import org.apache.syncope.client.services.proxy.TaskServiceProxy;
 import org.apache.syncope.client.services.proxy.UserRequestServiceProxy;
 import org.apache.syncope.client.services.proxy.UserServiceProxy;
+import org.apache.syncope.client.services.proxy.UserWorkflowServiceProxy;
 import org.apache.syncope.client.services.proxy.WorkflowServiceProxy;
 import org.apache.syncope.common.services.ConfigurationService;
 import org.apache.syncope.common.services.ConnectorService;
@@ -48,6 +49,7 @@ import org.apache.syncope.common.service
 import org.apache.syncope.common.services.TaskService;
 import org.apache.syncope.common.services.UserRequestService;
 import org.apache.syncope.common.services.UserService;
+import org.apache.syncope.common.services.UserWorkflowService;
 import org.apache.syncope.common.services.WorkflowService;
 import org.apache.syncope.console.commons.Constants;
 import org.apache.wicket.Session;
@@ -108,6 +110,7 @@ public class SyncopeSession extends WebS
         services.put(TaskService.class, new TaskServiceProxy(baseURL, restTemplate));
         services.put(UserRequestService.class, new UserRequestServiceProxy(baseURL, restTemplate));
         services.put(UserService.class, new UserServiceProxy(baseURL, restTemplate));
+        services.put(UserWorkflowService.class, new UserWorkflowServiceProxy(baseURL, restTemplate));
         services.put(WorkflowService.class, new WorkflowServiceProxy(baseURL, restTemplate));
     }