coheigea commented on issue #487: Ensure JAXB and javax.activation are not 
required for JAX-RS
URL: https://github.com/apache/cxf/pull/487#issuecomment-453083194
 
 
   ProviderFactory has a method:
   
    static int comparePriorityStatus(Class<?> cl1, Class<?> cl2) {
           Integer value1 = AnnotationUtils.getBindingPriority(cl1);
           Integer value2 = AnnotationUtils.getBindingPriority(cl2);
           return value1.compareTo(value2);
       }
   
   AnnotationUtils.has: import javax.annotation.Priority;
   
   So I guess AnnotationUtils.getBindingPriority needs to use some reflection 
as well here.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to