Package org.jboss.test.ws.jaxws.samples.retail.profile

Examples of org.jboss.test.ws.jaxws.samples.retail.profile.DiscountRequest


      //Response<Boolean> response = getVerificationPort().verifyAsync(creditCard);

      boolean validCard = getVerificationPort().verify(creditCard);

      // high value customer discount
      DiscountRequest discountRequest = new DiscountRequest(order.getCustomer());
      DiscountResponse discount = getProfilePort().getCustomerDiscount(discountRequest);
      boolean hasDiscount = discount.getDiscount() > 0.00;
      log.info("High value customer ? " + hasDiscount);

      try
View Full Code Here

TOP

Related Classes of org.jboss.test.ws.jaxws.samples.retail.profile.DiscountRequest

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.