Exemplo n.º 1
0
 /**
  * @param uuid
  * @param backendRegistry
  * @return
  * @throws XdsException
  */
 private Metadata findFoldersForDocumentByUuid(String uuid, BackendRegistry backendRegistry)
     throws XdsException {
   SqParams parms = new SqParams();
   parms.addStringParm("$XDSDocumentEntryEntryUUID", uuid);
   // Response response, Message log_message
   GetFoldersForDocument sffd =
       new GetFoldersForDocument(
           parms, false /* LeafClass */, this.response, this.log_message, backendRegistry);
   return sffd.runInternal();
 }