X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fmanagers%2Fdriver.py;h=f049f5499d8858abd45ba5bd7d969029b848b49f;hb=f2282434e40e06365e0fdd3f9bc273a793f41235;hp=cdd6faeb22fed43830c1b0f08942d71158a8eb7a;hpb=7e9dbaf688d09c48759c849c4fd12267ad1ec6c3;p=sfa.git diff --git a/sfa/managers/driver.py b/sfa/managers/driver.py index cdd6faeb..f049f549 100644 --- a/sfa/managers/driver.py +++ b/sfa/managers/driver.py @@ -20,11 +20,9 @@ class Driver: # the following is used in Resolve (registry) when run in full mode # after looking up the sfa db, we wish to be able to display # testbed-specific info as well - # this at minima should fill in the 'researcher' field for slice records - # as this information is then used to compute rights - # roadmap: there is an intention to redesign the SFA database so as to clear up - # this constraint, based on the principle that SFA should not rely on the - # testbed database to perform such a core operation (i.e. getting rights right) + # based on the principle that SFA should not rely on the testbed database + # to perform such a core operation (i.e. getting rights right) + # this is no longer in use when performing other SFA operations def augment_records_with_testbed_info (self, sfa_records): return sfa_records @@ -57,6 +55,15 @@ class Driver: def update (self, old_sfa_record, new_sfa_record, hrn, new_key): return True + # callack for register/update + # this allows to capture changes in the relations between objects + # the ids below are the ones found in the 'pointer' field + # this can get typically called with + # 'slice' 'user' 'researcher' slice_id user_ids + # 'authority' 'user' 'pi' authority_id user_ids + def update_relation (self, subject_type, target_type, relation_name, subject_id, link_ids): + pass + ######################################## ########## aggregate oriented ########################################