Hi, I have been tasked with updating a 10 year old version of ofbiz entityengine and service engine to the latest version.
Would anyone know of a document that outlines the changes to just these modules? I didn't think so :-) It seems that many of the helper methods have been removed from the delegator. Just as a single example, findByPrimaryKey(String, Map) it is now findByPrimaryKeyPartial(GenericPK primaryKey, Set<String> keys). In the old version the entityname (string) was converted to the GenericPK for that entity and basically the final call was to a method similar to this. Just wondering if there is anyone that has been around for the past 10 years that can explain some of the history of the changes. I am faced with either writing my own delegator that is a layer over the existing delegator that puts the needed methods back and calls the new methods. Or editing the entire system fixing all the delegator calls. I have not gotten into the service engine yet, I would guess the past 10 years have seen many changes here as well. Thanks, Mark