mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
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:
@@ -676,7 +676,7 @@ public final class AVMConstants
|
|||||||
{
|
{
|
||||||
path = path.substring(0, webappIndex);
|
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);
|
path = path.substring(0, webappIndex);
|
||||||
}
|
}
|
||||||
vServerRegistry.webappRemoved(-1, path, true);
|
vServerRegistry.removeAllWebapps(-1, path, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user