Check if a webapp is already deployed in this host. @param contextName of the context which will be checked @return true if the specified deployment exists
(String contextName)
| 1240 | * @return <code>true</code> if the specified deployment exists |
| 1241 | */ |
| 1242 | protected boolean deploymentExists(String contextName) { |
| 1243 | return deployed.containsKey(contextName) || (host.findChild(contextName) != null); |
| 1244 | } |
| 1245 | |
| 1246 | |
| 1247 | /** |
no test coverage detected