Hi there, I would just like the official
word on this matter, can create methods in stateful session beans/entity beans home interface be overloaded like this?
create(
String name) throws ...
create(int studentId) throws...
or can the home interface just contain this:
createStudent(String name) throws...
without any default create() or create(args) in the home interface?
or must there be at least one create() or create(args)? Please bear in mind that I am refering to stateful session beans and entity beans here. Thanks!!