@Override
protected Collection<? extends Parameter> readParameters(RequestMappingContext context) {
HandlerMethod handlerMethod = context.getHandlerMethod();
Method method = handlerMethod.getMethod();
ApiImplicitParam annotation = AnnotationUtils.findAnnotation(method, ApiImplicitParam.class);
List<Parameter> parameters = Lists.newArrayList();
if (null != annotation) {
parameters.add(OperationImplicitParameterReader.getImplicitParameter(annotation));
}
return parameters;