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

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


      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
      {
         //log.info(creditCard + " valid? " + response.get());
View Full Code Here

TOP

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

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.