Package org.jboss.resteasy.annotations

Examples of org.jboss.resteasy.annotations.GZIP


        classElement.appendChild(methodElement);
        Name elementName = td.getSimpleName();
        methodElement.setAttribute("name", elementName.toString());
        String httpMethod = getHttpMethod(td.getAnnotationMirrors());
        methodElement.setAttribute("method",httpMethod);
        GZIP gzip = td.getAnnotation(GZIP.class);
        if (gzip!=null) {
            methodElement.setAttribute("gzip","true");
        }
        ApiOperation apiOperation = td.getAnnotation(ApiOperation.class);
        String responseClass = null;
View Full Code Here

TOP

Related Classes of org.jboss.resteasy.annotations.GZIP

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.