Package com.s3auth.hosts

Examples of com.s3auth.hosts.GzipResource


        }
        if (request.headers().containsKey(HttpHeaders.ACCEPT_ENCODING)
            && request.headers().get(HttpHeaders.ACCEPT_ENCODING)
                .contains("gzip")
            && HttpThread.COMPRESSIBLE.contains(resource.contentType())) {
            resource = new GzipResource(resource);
        }
        return resource;
    }
View Full Code Here

TOP

Related Classes of com.s3auth.hosts.GzipResource

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.