public void removeOnDemandContext(String serviceName, String hostName, String contextName)
{
Mapper mapper = mappers.get(serviceName);
if (mapper != null)
{
mapper.removeContext(hostName, contextName);
}
else
{
log.warn("Cannot remove on-demand context for unknown engine " + serviceName);
}