Package com.bradmcevoy.http.quota

Examples of com.bradmcevoy.http.quota.DefaultStorageChecker


    }

    public ProtocolHandlers( WebDavResponseHandler responseHandler, AuthenticationService authenticationService ) {
        this.handlers = new ArrayList<HttpExtension>();
        List<StorageChecker> quotaCheckers = new ArrayList<StorageChecker>();
        quotaCheckers.add( new DefaultStorageChecker() );
        this.handlerHelper = new HandlerHelper( authenticationService, quotaCheckers );
        this.handlers.add( new Http11Protocol( responseHandler, handlerHelper ) );
        this.handlers.add( new WebDavProtocol( responseHandler, handlerHelper ) );
    }
View Full Code Here

TOP

Related Classes of com.bradmcevoy.http.quota.DefaultStorageChecker

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.