this.handlers = new ArrayList<HttpExtension>();
AuthenticationService authenticationService = new AuthenticationService();
WebDavResponseHandler responseHandler = new DefaultWebDavResponseHandler( authenticationService );
this.handlerHelper = new HandlerHelper( authenticationService, new ArrayList<StorageChecker>() );
this.handlers.add( new Http11Protocol( responseHandler, handlerHelper ) );
this.handlers.add( new WebDavProtocol( responseHandler, handlerHelper ) );
}