Class<?> clazz = instance.getClass();
String path = getPath(clazz.getAnnotation(Path.class));
String doc = getDescription(clazz.getAnnotation(Description.class));
rs.add(new SwaggerResource(rootPath.concat(path), doc));
}
return new SwaggerResources(baseURL, rs);
}