MediaTypeMap<Class<?>> typeMap = new MediaTypeMap<Class<?>>();
for (Class<?> decoratorAnnotation : meta.keySet())
{
Decorator decorator = decoratorAnnotation.getAnnotation(Decorator.class);
String[] mediaTypes = {"*/*"};
DecorateTypes produces = decorator.processor().getAnnotation(DecorateTypes.class);
if (produces != null)
{
mediaTypes = produces.value();
}
for (String pType : mediaTypes)