Made names of JMX operations reflect the current limitations

within the webapp.  Currently, we don't support either updating
 a single-webapp, or removing a single-webapp because the GUI
 cannot invite someone to only one webapp within a project.

 Therefore, the JMX calls are "updateAllVirtualWebapps" 
 and "removeAllVirtualWebapps", rather than implying we're 
 more fine-grained that we actually are.  

 The case of removal would be particularly misleading
 because if you thought you could just get rid of single
 webapp, you'd be sadly mistaken.



git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5072 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Jon Cox
2007-02-08 05:39:04 +00:00
parent f21f236122
commit a06d45dc8e

View File

@@ -676,7 +676,7 @@ public final class AVMConstants
{
path = path.substring(0, webappIndex);
}
vServerRegistry.webappUpdated(-1, path, true);
vServerRegistry.updateAllWebapps(-1, path, true);
}
}
@@ -699,7 +699,7 @@ public final class AVMConstants
{
path = path.substring(0, webappIndex);
}
vServerRegistry.webappRemoved(-1, path, true);
vServerRegistry.removeAllWebapps(-1, path, true);
}
}