I have an hyperjaxb xsd file and binding configuration. How can I force my generated classes to implement a custom interface declared in another artifact? I know I can make them extend another class by using
<xjc:superClass name="com.sample.jpa.entities.BaseEntity"/>
But I need them to implement another interface also. How can I achieve that?