Package org.jboss.resteasy.annotations.providers.jaxb

Examples of org.jboss.resteasy.annotations.providers.jaxb.IgnoreMediaTypes


      return subtype.substring(idx + 1);
   }

   public static boolean ignored(Class<?> type, Annotation[] annotations, MediaType mediaType)
   {
      IgnoreMediaTypes ignore = FindAnnotation.findAnnotation(type, annotations, IgnoreMediaTypes.class);
      if (ignore == null) return false;
      for (String mime : ignore.value())
      {
         if (compare(mediaType, mime)) return true;
      }
      return false;
   }
View Full Code Here

TOP

Related Classes of org.jboss.resteasy.annotations.providers.jaxb.IgnoreMediaTypes

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.