I need to integrate Java system with legacy C++ system. Those two system communicate through CORBA. Since Java system runs on JBoss we use JacORB.
To generate java stubs from .idl files we use maven-idl-compiler plugin (using JacORB)
org.codehaus.mojo idlj-maven-plugin org.jacorb jacorb-idl-compiler 2.2.3 provided
Everything works fine but I would like to modify the way stubs are being generates (changes names of methods,classes etc). Is there any way to do it?