コード例 #1
0
 def get_schema_concept(self, label):
     request = RequestBuilder.get_schema_concept(label)
     response = self._communicator.single_request(request)
     return ResponseReader.ResponseReader.get_schema_concept(
         self, response.getSchemaConcept_res)
コード例 #2
0
 def get_schema_concept(self, label: str):
     request = RequestBuilder.get_schema_concept(label)
     response = self._communicator.send(request)
     return ResponseConverter.ResponseConverter.get_schema_concept(
         self, response.getSchemaConcept_res)