Generic Attribute Access Pattern
Hi all,
I'd like to implement my BMP Beans with the Generic Attribute Access Pattern. So instead of using get/set methods I simply do get/put of the HashMap stored in the EJB.
Now my question is: how to I implement persitance of data on the DB with this pattern ?
Do I have to move the content of ejbStore into the method setAttributes(Map map) ? this way after calling setAttributes data is persited on the DB. But then what should I do with ejbStore? should I leave it empty?
thanks a lot
Francesco

