1

I've found this QA already and was able to prevent the generation of classes, but enums are still generated.

I've tried to prevent it with custom binding:

<jxb:bindings node="//xs:simpleType[@name='myEnum']">
      <jxb:class ref="com.myapp.enums.MyEnum" />
</jxb:bindings>

but it is not working for me. Is there any possibility to prevent the generation of enums or maybe another customization?

Community
  • 1
  • 1
D051P0
  • 398
  • 5
  • 17

1 Answers1

1

You must use following snippet

<jxb:bindings node="//xs:simpleType[@name='myEnum']">
      <jxb:typesafeEnumClass ref="com.myapp.enums.MyEnum"/>
</jxb:bindings>
Xstian
  • 8,184
  • 10
  • 42
  • 72