}
// Determine parameter bindings
Annotation[][] parameterAnnotations = method.getParameterAnnotations();
List<Parameter> parameters = new ArrayList<>();
for (Annotation[] parameterAnnotation : parameterAnnotations) {
Parameter parameter = null;
for (Annotation annotation : parameterAnnotation) {
if (Parameter.class.equals(annotation.annotationType())) {
parameter = (Parameter) annotation;
}
}