am using the Session.refreshObject(Object o) method to fresh an object that has a getList() method. This list is provided by toplink using a one to many mapping. When I refresh the object, I want this list to be refreshed too. Is this possible or I have to refresh something else?
Thanks in Advance!
refreshObjectis equivalent to callingReadObjectQuery.If you want to refresh objects in cascade you can use
ReadObjectQuery.cascadePrivateParts(). According to the doc this method.