}
String path = getPath(method.getAnnotation(Path.class));
String doc = getDescription(method.getAnnotation(Description.class));
apis.add(new SwaggerAPIPath(rootPath.concat(path), doc, ops));
}
return new SwaggerAPI(baseURL.concat(m_restEndpoint), rootPath, apis, models);
}