Originally posted by sarah Marsh:
question:
A container-managed persistence (CMP) entity bean A has a one-to-many unidirectional relationship (CMR) to another container-managed persistence (CMP) entity bean B. Which interface can expose the methods related to this relationship?
The answer is 'Only local interface of bean A'.
Why have to be local interface?
Thanks a lot!
The relationship is UNIdirectional, means from A to B. So only A has methods to get values of B. But B got nothing.
Vitaly