Package com.sun.xml.registry.uddi.bindings_v2_2

Examples of com.sun.xml.registry.uddi.bindings_v2_2.DeleteBusiness


        public void deleteBusinesses(String authInfo, String businessXML, String businessKey, int numberOfCopies) {
                try {
                        for (int i = 0; i < numberOfCopies; i++) {
                                // Delete the entity and make sure it is removed
                                String key = businessKey + "-" + i;
                                DeleteBusiness db = new DeleteBusiness();
                                db.setAuthInfo(authInfo);
                                db.getBusinessKey().add(key);
                                publication.deleteBusiness(db);
                                logger.debug("Deleted business with key " + key);
                        }

                } catch (Exception e) {
View Full Code Here


        }

        public void deleteBusiness(String authInfo, String businessXML, String businessKey) {
                try {
                        // Delete the entity and make sure it is removed
                        DeleteBusiness db = new DeleteBusiness();
                        db.setAuthInfo(authInfo);
                        db.getBusinessKey().add(businessKey);
                        publication.deleteBusiness(db);

                } catch (Exception e) {
                        logger.error(e.getMessage(), e);
                        Assert.fail("No exception should be thrown");
View Full Code Here

   *
   * @exception RegistryV3Exception;
   */
  public DispositionReport deleteBusiness(String authInfo,
      String[] businessKeyArray) throws RegistryV3Exception {
    DeleteBusiness request = this.objectFactory.createDeleteBusiness();
   
    if (authInfo != null) {
      request.setAuthInfo(authInfo);
    }

    if (businessKeyArray != null) {
      request.getBusinessKey().addAll(Arrays.asList(businessKeyArray));
    }

        DispositionReport dr = new DispositionReport();
        JAXBElement<?> o = execute(this.objectFactory.createDeleteBusiness(request), this.getPublishURI());
        if (o!=null){
View Full Code Here

   */
  public void unRegisterBusiness(String businessKey, Node node) {
    log.info("UnRegistering the business " + businessKey);
    try {
      String authToken = getAuthToken(node.getSecurityUrl());
      DeleteBusiness deleteBusiness = new DeleteBusiness();
      deleteBusiness.setAuthInfo(authToken);
      deleteBusiness.getBusinessKey().add(businessKey);
      getUDDINode().getTransport().getUDDIPublishService(node.getPublishUrl()).deleteBusiness(deleteBusiness);
    } catch (Exception e) {
      log.error("Unable to register service " + businessKey
          + " ." + e.getMessage(),e);
    }
View Full Code Here

  public void deleteBusinesses(String authInfo, String businessXML, String businessKey, int numberOfCopies) {
    try {
      for (int i=0; i<numberOfCopies; i++) {
        // Delete the entity and make sure it is removed
        String key = businessKey + "-" + i;
        DeleteBusiness db = new DeleteBusiness();
        db.setAuthInfo(authInfo);
        db.getBusinessKey().add(key);
        publication.deleteBusiness(db);
        logger.debug("Deleted business with key " + key);
      }
     
    } catch(Exception e) {
View Full Code Here

 
 
  public void deleteBusiness(String authInfo, String businessXML, String businessKey) {
    try {
      // Delete the entity and make sure it is removed
      DeleteBusiness db = new DeleteBusiness();
      db.setAuthInfo(authInfo);
      db.getBusinessKey().add(businessKey);
      publication.deleteBusiness(db);
     
    } catch(Exception e) {
      logger.error(e.getMessage(),e);
      Assert.fail("No exception should be thrown");
View Full Code Here

         * @param node
         */
        public void unRegisterBusiness(String businessKey, Node node) {
                log.info("UnRegistering the business " + businessKey);
                try {
                        DeleteBusiness deleteBusiness = new DeleteBusiness();
                        deleteBusiness.setAuthInfo(getAuthToken(node.getSecurityUrl()));
                        deleteBusiness.getBusinessKey().add(businessKey);
                        getUDDINode().getTransport().getUDDIPublishService(node.getPublishUrl()).deleteBusiness(deleteBusiness);
                } catch (Exception e) {
                        log.error("Unable to register service " + businessKey
                                + " ." + e.getMessage(), e);
                }
View Full Code Here

        be.getBusinessServices().getBusinessService().add(bs);

        sb.getBusinessEntity().add(be);
      
        BusinessDetail saveBusiness = publication.saveBusiness(sb);
        DeleteBusiness db = new DeleteBusiness();
        db.setAuthInfo(authInfoJoe);
        db.getBusinessKey().add(saveBusiness.getBusinessEntity().get(0).getBusinessKey());
        publication.deleteBusiness(db);
    }
View Full Code Here

        be.getBusinessServices().getBusinessService().add(bs);

        sb.getBusinessEntity().add(be);
        try {
            BusinessDetail saveBusiness = publication.saveBusiness(sb);
            DeleteBusiness db = new DeleteBusiness();
            db.setAuthInfo(authInfoJoe);
            db.getBusinessKey().add(saveBusiness.getBusinessEntity().get(0).getBusinessKey());
            publication.deleteBusiness(db);
            Assert.fail("request should have been rejected");

        } catch (ValueNotAllowedException ex) {
            HandleException(ex);
View Full Code Here

        be.getBusinessServices().getBusinessService().add(bs);

        sb.getBusinessEntity().add(be);
        try {
            BusinessDetail saveBusiness = publication.saveBusiness(sb);
            DeleteBusiness db = new DeleteBusiness();
            db.setAuthInfo(authInfoJoe);
            db.getBusinessKey().add(saveBusiness.getBusinessEntity().get(0).getBusinessKey());
            publication.deleteBusiness(db);
            Assert.fail("request should have been rejected");

        } catch (ValueNotAllowedException ex) {
            HandleException(ex);
View Full Code Here

TOP

Related Classes of com.sun.xml.registry.uddi.bindings_v2_2.DeleteBusiness

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.