You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cxf.apache.org by GitBox <gi...@apache.org> on 2019/01/10 12:43:02 UTC

[GitHub] coheigea commented on issue #487: Ensure JAXB and javax.activation are not required for JAX-RS

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:
users@infra.apache.org


With regards,
Apache Git Services