// http://jira.ettrema.com:8080/browse/MIL-11
handlers: for (HttpExtension x : httpManager.getHandlers()) {
if (x instanceof Http11Protocol) {
Http11Protocol p = (Http11Protocol) x;
for (Handler h : x.getHandlers()) {
if (h instanceof com.bradmcevoy.http.http11.GetHandler) {
httpManager.addFilter(0, new GetHandler(
new DefaultWebDavResponseHandler(
new AuthenticationService()), p
.getHandlerHelper()));
break handlers;
}
}
}