You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by cs...@apache.org on 2013/02/01 18:13:25 UTC

svn commit: r1441540 - /syncope/trunk/common/src/main/java/org/apache/syncope/common/services/UserService.java

Author: cschneider
Date: Fri Feb  1 17:13:24 2013
New Revision: 1441540

URL: http://svn.apache.org/viewvc?rev=1441540&view=rev
Log:
SYNCOPE-231 Fix for issue in UserService read by name

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

Modified: syncope/trunk/common/src/main/java/org/apache/syncope/common/services/UserService.java
URL: http://svn.apache.org/viewvc/syncope/trunk/common/src/main/java/org/apache/syncope/common/services/UserService.java?rev=1441540&r1=1441539&r2=1441540&view=diff
==============================================================================
--- syncope/trunk/common/src/main/java/org/apache/syncope/common/services/UserService.java (original)
+++ syncope/trunk/common/src/main/java/org/apache/syncope/common/services/UserService.java Fri Feb  1 17:13:24 2013
@@ -108,7 +108,7 @@ public interface UserService {
 
     @GET
     @Path("readByUsername/{username}")
-    UserTO read(@MatrixParam("uname") String username);
+    UserTO read(@PathParam("username") String username);
 
     @GET
     @Path("read/self")