Package edu.indiana.extreme.gfac.utils

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


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


      String abstractWsdlAsString) throws GfacException {
    try {
      registryClient.registerServiceDesc(serviceMapAsStr,
          abstractWsdlAsString);
    } catch (XRegistryClientException e) {
      throw new GfacException(e, FaultCode.ErrorAtDependentService);
    }
  }
View Full Code Here

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

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

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

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

      String action) throws GfacException {
    try {
      return registryClient.isAuthorizedToAcsses(null, resourceID, actor,
          action);
    } catch (XRegistryClientException e) {
      throw new GfacException(e, FaultCode.ErrorAtDependentService);
    }
  }
View Full Code Here

  public void addCapability(String resource, String actor, boolean isUser,
      String action) throws GfacException {
    try {
      registryClient.addCapability(resource, actor, isUser, action);
    } catch (XRegistryClientException e) {
      throw new GfacException(e, FaultCode.ErrorAtDependentService);
    }
  }
View Full Code Here

      boolean isUser, String action) throws GfacException {
    try {
      return registryClient.findCapability(resource, actor, isUser,
          action);
    } catch (XRegistryClientException e) {
      throw new GfacException(e, FaultCode.ErrorAtDependentService);
    }
  }
View Full Code Here

  public void removeCapability(String resourceID, String actor)
      throws GfacException {
    try {
      registryClient.removeCapability(resourceID, actor);
    } 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.