300301302303304305306307
public AppData[] xfindAppDesc(String query) throws GfacException { try { return registryClient.findAppDesc(query); } catch (XRegistryClientException e) { throw new GfacException(e, FaultCode.ErrorAtDependentService); } }
308309310311312313314315
public HostDescData[] xfindHostDesc(String query) throws GfacException { try { return registryClient.findHosts(query); } catch (XRegistryClientException e) { throw new GfacException(e, FaultCode.ErrorAtDependentService); } }
316317318319320321322323
public ServiceDescData[] xfindServiceDesc(String query) throws GfacException { try { return registryClient.findServiceDesc(query); } catch (XRegistryClientException e) { throw new GfacException(e, FaultCode.ErrorAtDependentService); } }