processor = new CookieParamProcessor(cookie.value());
}
else if ((uriParam = FindAnnotation.findAnnotation(annotations,
PathParam.class)) != null)
{
processor = new PathParamProcessor(uriParam.value());
}
else if ((matrix = FindAnnotation.findAnnotation(annotations,
MatrixParam.class)) != null)
{
processor = new MatrixParamProcessor(matrix.value());