Exemple #1
0
 def get_object(self, object_signature, object_id):
     return models.get_object(self.active_workspace, object_signature,
                              object_id)
Exemple #2
0
 def get_object(self, object_signature, object_id):
     return models.get_object(self.active_workspace, object_signature, object_id)
 def find(self, class_signature, obj_id):
     return get_object(self.workspace_name, class_signature, obj_id)
Exemple #4
0
 def find(self, class_signature, obj_id):
     if self.workspace_name is None:
         logger.warn('No workspace detected. please call createMappers first.')
     return get_object(self.workspace_name, class_signature, obj_id)
Exemple #5
0
 def find(self, class_signature, obj_id):
     return get_object(self.workspace_name, class_signature, obj_id)