I have an old EJB (2.1) project that uses xdoclet (1.2.3) to generate the EJB interfaces. Unfortunately xdoclet makes it impossible to use generics in the method signatures.
Is there a substitute or other way to to allow generics in the parameters?
Here is the minimum type of generics use I'm looking for:
public Object ejbMethod(Collection<String> param) { return null;}
Of course the more the better.