Package org.plugtree.training.model

Examples of org.plugtree.training.model.Customer


                // KnowledgeRuntimeLogger logger = KnowledgeRuntimeLoggerFactory.newConsoleLogger(ksession);
  }
        @Test
  public void testExecution() {

    Customer johnInternational = new Customer("John Z", CustomerType.INTERNATIONAL);
    Customer annaInternational = new Customer("Anna M", CustomerType.INTERNATIONAL);
    Customer maryInternational = new Customer("Mary C", CustomerType.NATIONAL);
    Customer jesseNational = new Customer("Jessy D", CustomerType.NATIONAL);

    Order internationalExpressOrder = new Order();
    internationalExpressOrder.setCustomer(johnInternational);
    internationalExpressOrder.setShipping(ShippingType.EXPRESS);
    internationalExpressOrder.setAmount(100);
View Full Code Here

TOP

Related Classes of org.plugtree.training.model.Customer

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.