Package com.s3auth.hosts

Examples of com.s3auth.hosts.Version


     * @return The resource
     * @throws IOException If some IO exception
     */
    private static Resource resource(final Host host, final HttpRequest request)
        throws IOException {
        final Version version;
        if (request.parameters().containsKey(HttpThread.ALL_VERSIONS)) {
            version = Version.LIST;
        } else if (request.parameters().containsKey(HttpThread.VER)) {
            version = new Version.Simple(
                request.parameters().get(HttpThread.VER)
View Full Code Here

TOP

Related Classes of com.s3auth.hosts.Version

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.