private List<Map<String, Object>> determineResponses(Method method) {
List<Map<String, Object>> result = Lists.newArrayList();
if (method.isAnnotationPresent(ApiResponses.class)) {
ApiResponses responses = method.getAnnotation(ApiResponses.class);
for(ApiResponse response : responses.value()) {
Map<String, Object> responseDescription = Maps.newHashMap();
responseDescription.put("code", response.code());
responseDescription.put("message", response.message());