Package xregistry.generated

Examples of xregistry.generated.RemoveServiceDescDocument


        RemoveHostDescDocument input =  RemoveHostDescDocument.Factory.newInstance();
        input.addNewRemoveHostDesc().setHostName(hostName);
        proxy.removeHostDesc(input);       
    }
    public void removeServiceDesc(QName serviceName) throws XregistryException {
        RemoveServiceDescDocument input =  RemoveServiceDescDocument.Factory.newInstance();
        input.addNewRemoveServiceDesc().setServiceQname(serviceName);
        proxy.removeServiceDesc(input);
    }
View Full Code Here


          input.addNewRemoveHostDesc().setHostName(hostName);
          xregistryStub.removeHostDesc(input);       
      }
     
      public void removeServiceDesc(QName serviceName) throws XRegistryClientException {
          RemoveServiceDescDocument input =  RemoveServiceDescDocument.Factory.newInstance();
          input.addNewRemoveServiceDesc().setServiceQname(serviceName);
          xregistryStub.removeServiceDesc(input);
      }
View Full Code Here

TOP

Related Classes of xregistry.generated.RemoveServiceDescDocument

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.