コード例 #1
0
ファイル: tree_entry.py プロジェクト: Indigo-Uliv/indigo
 def update_container_acl_cdmi(self, cdmi_acl):
     """"Update static ACL from a cdmi object (list of dict)"""
     cql_string = acl_cdmi_to_cql(cdmi_acl)
     self.update_container_acl(cql_string)
コード例 #2
0
ファイル: tree_entry.py プロジェクト: Indigo-Uliv/indigo
 def update_entry_acl_cdmi(self, cdmi_acl):
     """"Update entry ACL from a cdmi object (list of dict)"""
     cql_string = acl_cdmi_to_cql(cdmi_acl)
     self.update_entry_acl(cql_string)
コード例 #3
0
 def create_acl_cdmi(self, cdmi_acl):
     """""Create entry ACL from a cdmi object (list of dict)"""
     cql_string = acl_cdmi_to_cql(cdmi_acl)
     self.create_acl(cql_string)