Remove a wrapper from an existing context. @param hostName Virtual host name this wrapper belongs to @param contextPath Context path this wrapper belongs to @param version Context version this wrapper belongs to @param path Wrapper mapping
(String hostName, String contextPath, String version, String path)
| 532 | * @param path Wrapper mapping |
| 533 | */ |
| 534 | public void removeWrapper(String hostName, String contextPath, String version, String path) { |
| 535 | hostName = renameWildcardHost(hostName); |
| 536 | ContextVersion contextVersion = findContextVersion(hostName, contextPath, version, true); |
| 537 | if (contextVersion == null || contextVersion.isPaused()) { |
| 538 | return; |
| 539 | } |
| 540 | removeWrapper(contextVersion, path); |
| 541 | } |
| 542 | |
| 543 | private void removeWrapper(ContextVersion context, String path) { |
| 544 |
no test coverage detected