public void processParams(final ProcessParameterContext processParameterContext) {
final java.lang.annotation.Annotation[] parameterAnnotations = Annotations.getParameterAnnotations(processParameterContext.getMethod())[processParameterContext.getParamNum()];
for (final Annotation parameterAnnotation : parameterAnnotations) {
if (parameterAnnotation instanceof MustSatisfy) {
final MustSatisfy annotation = (MustSatisfy) parameterAnnotation;
FacetUtil.addFacet(create(annotation, processParameterContext.getFacetHolder()));
return;
}
}
}