58596061626364
public ServiceDescription getServiceDescription() throws AiravataAPIInvocationException { ServiceDescription desc = getAiravataAPI().getApplicationManager().getServiceDescription(getService()); if(desc!=null){ return desc; } throw new AiravataAPIInvocationException(new Exception("Service Description not found in registry.")); }
158159160161162163164165166167168
try { ServiceDescription disc = getRegistry().getApplicationManager().getServiceDescription(originalService); if(disc!=null){ setServiceDescription(disc); } throw new AiravataAPIInvocationException(new Exception("Service Description not found in registry.")); } catch (AiravataAPIInvocationException e) { e.printStackTrace(); } } }
474849505152535455
List<URI> gFacDescriptorList = getClient().getRegistryClient().getGFacURIs(); for (URI url : gFacDescriptorList) { list.add(url); } } catch (Exception e) { throw new AiravataAPIInvocationException(e); } return list; }
5758596061626364
@Override public URI getGFaCURL() throws AiravataAPIInvocationException{ try { return getClient().getClientConfiguration().getGfacURL().toURI(); } catch (URISyntaxException e) { throw new AiravataAPIInvocationException(e); } }
7374757677787980
@Override public List<URI> getWorkflowInterpreterServiceURLs() throws AiravataAPIInvocationException{ try { return getClient().getRegistryClient().getWorkflowInterpreterURIs(); } catch (Exception e) { throw new AiravataAPIInvocationException(e); } }
93949596979899100
public URI getWorkflowInterpreterServiceURL() throws AiravataAPIInvocationException { try { return getClient().getClientConfiguration().getXbayaServiceURL().toURI(); } catch (URISyntaxException e) { throw new AiravataAPIInvocationException(e); } }
114115116117118119120121
public List<URI> getMessageBoxServiceURLs() throws AiravataAPIInvocationException { try { return new ArrayList<URI>(){{add(getClient().getRegistryClient().getMessageBoxURI());}}; } catch (Exception e) { throw new AiravataAPIInvocationException(e); } }
123124125126127128129130
@Override public URI getMessageBoxServiceURL() throws AiravataAPIInvocationException { try { return getClient().getRegistryClient().getMessageBoxURI(); } catch (Exception e) { throw new AiravataAPIInvocationException(e); } }
143144145146147148149150
public List<URI> getEventingServiceURLs() throws AiravataAPIInvocationException { try { return new ArrayList<URI>(){{add(getClient().getRegistryClient().getEventingServiceURI());}}; } catch (Exception e) { throw new AiravataAPIInvocationException(e); } }
152153154155156157158159
@Override public URI getEventingServiceURL() throws AiravataAPIInvocationException { try { return getClient().getRegistryClient().getEventingServiceURI(); } catch (Exception e) { throw new AiravataAPIInvocationException(e); } }