Package edu.indiana.extreme.gfac.utils

Examples of edu.indiana.extreme.gfac.utils.GfacException


                resources[i].sn = i +1;
            }
      return resources; 
         
    } catch (XRegistryClientException e) {
      throw new GfacException(e, FaultCode.ErrorAtDependentService);
    }
  }
View Full Code Here


                resources[i].nameSpace = docDatas[i].getName().getNamespaceURI();
                resources[i].sn = i +1;
            }
            return resources; 
    } catch (XRegistryClientException e) {
      throw new GfacException(e, FaultCode.ErrorAtDependentService);
    }
  }
View Full Code Here

  public String getAbstractWsdl(String wsdlQName) throws GfacException {
    try {
      return registryClient.getAbstractWsdl(QName.valueOf(wsdlQName));
    } catch (XRegistryClientException e) {
      throw new GfacException(e, FaultCode.ErrorAtDependentService);
    }
  }
View Full Code Here

  public String getAppDesc(String appQName, String hostName)
      throws GfacException {
    try {
      return registryClient.getAppDesc(appQName, hostName);
    } catch (XRegistryClientException e) {
      throw new GfacException(e, FaultCode.ErrorAtDependentService);
    }
  }
View Full Code Here

  public String getConcreateWsdl(String wsdlQName) throws GfacException {
    try {
      return registryClient.getConcreateWsdl(QName.valueOf(wsdlQName));
    } catch (XRegistryClientException e) {
      throw new GfacException(e, FaultCode.ErrorAtDependentService);
    }
  }
View Full Code Here

  public String getHostDesc(String hostName) throws GfacException {
    try {
      return registryClient.getHostDesc(hostName);
    } catch (XRegistryClientException e) {
      throw new GfacException(e, FaultCode.ErrorAtDependentService);
    }
  }
View Full Code Here

  public String getServiceMap(String serviceQName) throws GfacException {
    try {
      return registryClient.getServiceDesc(QName.valueOf(serviceQName));
    } catch (XRegistryClientException e) {
      throw new GfacException(e, FaultCode.ErrorAtDependentService);
    }
  }
View Full Code Here

          for(int i = 0;i<hostDescData.length;i++){
              results[i] = hostDescData[i].getResourceID().toString();
          }
          return results;
      } catch (XRegistryClientException e) {
      throw new GfacException(e, FaultCode.ErrorAtDependentService);
    }
  }
View Full Code Here

  public void registerAppDesc(String appDescAsStr) throws GfacException {
    try {
      registryClient.registerAppDesc(appDescAsStr);
    } catch (XRegistryClientException e) {
      throw new GfacException(e, FaultCode.ErrorAtDependentService);
    }
  }
View Full Code Here

  public void registerConcreteWsdl(String wsdlAsStr, int lifetimeAsSeconds)
      throws GfacException {
    try {
      registryClient.registerConcreteWsdl(wsdlAsStr, lifetimeAsSeconds);
    } catch (XRegistryClientException e) {
      throw new GfacException(e, FaultCode.ErrorAtDependentService);
    }
  }
View Full Code Here

TOP

Related Classes of edu.indiana.extreme.gfac.utils.GfacException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.