changed message to validate user

git-svn-id: http://svn.d4science-ii.research-infrastructures.eu/gcube/trunk/portlets/user/workspace-tree-widget@113503 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Francesco Mangiacrapa 2015-03-06 17:15:33 +00:00
parent d39ccb6db4
commit 2733ce7e22
1 changed files with 2 additions and 2 deletions

View File

@ -3035,12 +3035,12 @@ public class GWTWorkspaceServiceImpl extends RemoteServiceServlet implements GWT
//CHANGE ACL IS NOT VALID
workspaceLogger.trace("Reject ACL: "+settingACL+ " to "+username);
validLogins.remove(username);
errors.add("Unable to grant the privilege '"+settingACL+" for "+fullname+", it's lower than (already assigned) "+ aclHL);
errors.add("Unable to grant the privilege "+settingACL+" for "+fullname+", it's lower than (already assigned) "+ aclHL);
break;
}else if(cmp==0){
//SAME ACL
workspaceLogger.trace("Skipping ACL: "+settingACL+ " to "+username);
errors.add("Ignore to grant the privilege '"+settingACL+" for "+fullname+", it's already assigned");
errors.add(settingACL+" privilege for "+fullname+ " already assigned");
validLogins.remove(username);
break;
}else if(cmp==1){