bug 9664: username parameter for API listuser should search for exact string

status 9664: resolved fixed
This commit is contained in:
nit 2011-05-03 12:33:56 +05:30
parent db916401a0
commit 2f9efc6424
1 changed files with 1 additions and 1 deletions

View File

@ -929,7 +929,7 @@ public class ManagementServerImpl implements ManagementServer {
}
if (username != null) {
sc.setParameters("username", "%" + username + "%");
sc.setParameters("username", username);
}
if (id != null) {