private ConcurrentHashMap<CacheKey, JAXBContext> badgerCollectionCache = new ConcurrentHashMap<CacheKey, JAXBContext>();
private ConcurrentHashMap<CacheKey, JAXBContext> badgerXmlTypeCollectionCache = new ConcurrentHashMap<CacheKey, JAXBContext>();
protected JAXBContext createContextObject(Annotation[] annotations, Class... classes) throws JAXBException
{
Mapped mapped = FindAnnotation.findAnnotation(annotations, Mapped.class);
BadgerFish badger = FindAnnotation.findAnnotation(annotations, BadgerFish.class);
if (badger != null)
{
return new BadgerContext(classes);
}