Package ch.iterate.openstack.swift.handler

Examples of ch.iterate.openstack.swift.handler.Authentication10ResponseHandler


    public AuthenticationResponse authenticate(AuthenticationRequest request) throws IOException {
        switch(request.getVersion()) {
            case v10:
            default:
                return this.authenticate(request, new Authentication10ResponseHandler());
            case v11:
                return this.authenticate(request, new AuthenticationJson11ResponseHandler());
            case v20:
                return this.authenticate(request, new AuthenticationJson20ResponseHandler());
        }
View Full Code Here


    public AuthenticationResponse authenticate(AuthenticationRequest request) throws IOException {
        switch(request.getVersion()) {
            case v10:
            default:
                return this.authenticate(request, new Authentication10ResponseHandler());
            case v11:
                return this.authenticate(request, new AuthenticationJson11ResponseHandler());
            case v20:
                return this.authenticate(request, new AuthenticationJson20ResponseHandler());
        }
View Full Code Here

TOP

Related Classes of ch.iterate.openstack.swift.handler.Authentication10ResponseHandler

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.