Hi folks,
This snippet is taken from the JBOSSCMP docs. I can't understand how it returns the remote entities.It is a BMP custom finder.
public abstract class GangsterBean implements EntityBean {
public Collection ejbFindByPrimaryKeys(Collection keys) {
return keys;
}
}
It just seems to
take in the keys collection and then return it
straight back out again.
I'm confused cos I can't see where the container would
intercept the call and
return the entities if the method is not declared
abstract.
Thanks,
Mark.