}
public static Param getParamAnnotation(Annotation[] annotationsParam)
throws ProtocolException {
Param param = null;
for (int j = 0; j < annotationsParam.length; j++) {
if (annotationsParam[j] instanceof Param) {
param = (Param) annotationsParam[j];
break;