classes.addAll(Classes.ancestors(interceptorData.getInterceptorClass()));
}
// We really shouldn't do this here -- should be done in the AnnotationDeployer where we already payed for the AnnotationFinder
final AnnotationFinder finder = new AnnotationFinder(new ClassesArchive(classes));
final List<Field> fields = finder.findAnnotatedFields(javax.ws.rs.core.Context.class);
final Set<Class<?>> contextTypes = new HashSet<Class<?>>();
for (Field field : fields) {
contextTypes.add(field.getType());
}