Can the return type of the entity bean callback method ejbCreate() be a primitive? Something like...
public int ejbCreate(String strData) throws CreateException{
.
.
return null;
} My blind guess is no, when I consider 'return null;' in the CMP Bean's ejbCreate().
But if that is true, what about the auto-boxing feature of
Java 1.5?
Thanks in Advance