added loggers

removed double event

git-svn-id: http://svn.d4science-ii.research-infrastructures.eu/gcube/trunk/portlets/user/workspace-tree-widget@93234 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Francesco Mangiacrapa 2014-03-17 16:59:06 +00:00
parent c8bf730afd
commit d9900fe6ce
3 changed files with 3 additions and 4 deletions

View File

@ -138,9 +138,6 @@ public class DialogPermission extends Dialog {
@Override
public void componentSelected(ButtonEvent ce) {
AppControllerExplorer.getEventBus().fireEvent(new VRESettingPermissionEvent(folder));
// hide();
INSTANCE.mask("Changing permissions");
if(folder!=null && getSelectedACL().getId()!=null){

View File

@ -2190,6 +2190,8 @@ public class GWTWorkspaceBuilder {
if(acls.size()==0)
throw new Exception("No ACLs rules found!");
logger.trace("returning acls: "+acls);
return acls;
}

View File

@ -2769,7 +2769,7 @@ public class GWTWorkspaceServiceImpl extends RemoteServiceServlet implements GWT
@Override
public List<WorkspaceACL> getUserACLForFolderId(String folderId) throws Exception{
try {
workspaceLogger.info("Get user ACL to FOLDER id: "+folderId);
WorkspaceSharedFolder wsFolder = getSharedFolderForId(folderId);
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
return builder.getWorkspaceACLFromACLs(Arrays.asList(wsFolder.getACLUser()));