Examples of deleteHostDescription()


Examples of edu.indiana.extreme.xbaya.xregistry.XRegistryAccesser.deleteHostDescription()

      List<OGCEXRegistrySearchResult> hostDescs = this.list
          .getSelectedValues();

      try {
        for (OGCEXRegistrySearchResult hostDesc : hostDescs) {
          xregistryAccesser.deleteHostDescription(hostDesc.getQname()
              .toString());
        }
      } catch (XRegistryClientException e) {
        this.engine.getErrorWindow().error(this.dialog.getDialog(), e.getMessage(), e);
      }
View Full Code Here

Examples of edu.indiana.extreme.xbaya.xregistry.XRegistryAccesser.deleteHostDescription()

      if (!this.isEditing) {
        xRegAccesser.registerHost(hostBean);
      } else {
        /* Delete old host bean */
        xRegAccesser.deleteHostDescription(this.editingHostBean
            .getHostName());

        /* Register new host bean */
        xRegAccesser.registerHost(hostBean);

 
View Full Code Here

Examples of org.apache.airavata.registry.api.AiravataRegistry.deleteHostDescription()

        if (askQuestion("Host descriptions",
                "Are you sure that you want to remove all host descriptions in this registry?")) {
            AiravataRegistry registry = getRegistry();
            List<HostDescription> descriptions = getHostDescriptions().getDescriptions();
            for (HostDescription descriptionWrap : descriptions) {
                registry.deleteHostDescription(descriptionWrap.getType().getHostName());
            }
            refresh();
            reloadTreeNode(tree, this);
        }
    }
View Full Code Here

Examples of org.apache.airavata.registry.api.AiravataRegistry.deleteHostDescription()

        if (askQuestion("Host descriptions",
                "Are you sure that you want to remove all host descriptions in this registry?")) {
            AiravataRegistry registry = getRegistry();
            List<HostDescription> descriptions = getHostDescriptions().getDescriptions();
            for (HostDescription descriptionWrap : descriptions) {
                registry.deleteHostDescription(descriptionWrap.getType().getHostName());
            }
            refresh();
            reloadTreeNode(tree, this);
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.