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;