Hide Forgot
Description of problem: There are two different approaches for specifying extra JAXB classes and I'd say they should be same. The first approach, JaxbSerializationProvider has optional parameter extraJaxbClassList of type Set<Class<?>> The another way is to use for example RemoteJmsRuntimeEngineFactory which has addExtraJaxbClasses method with a parameter of type Collection<Class<?>> extraJaxbClasses Please make the types same. I suggest the Collection because then it's simple to create it with Arrays.asList(array of classes). Requiring Set means that I just need to put the collection into HashSet and I don't see any good reasons to do this additional step. Version-Release number of selected component (if applicable): How reproducible: Steps to Reproduce: 1. 2. 3. Actual results: Expected results: Additional info:
Fixed: 6.0.x: https://github.com/droolsjbpm/droolsjbpm-integration/commit/c3353ca2 master: https://github.com/droolsjbpm/droolsjbpm-integration/commit/f9250652
Verified in BPMS 6.0.0.ER7