Package org.apache.tuscany.das.rdb.test.customer

Examples of org.apache.tuscany.das.rdb.test.customer.AnOrder


    // Modify a customer
    Customer customer = (Customer) root.getCustomers().get(0);
    customer.setLastName("Pavick");

    // Modify an order
    AnOrder order = (AnOrder) customer.getOrders().get(0);
    order.setProduct("Kitchen Sink 001");

    ApplyChangesCommand apply = Command.FACTORY.createApplyChangesCommand(getConfig("1xM_mapping_no_cud.xml"));
    apply.setConnection(getConnection());   

    // Flush changes
View Full Code Here


        // Modify a customer
        Customer customer = (Customer) root.getDataObject("Customer[1]");
        customer.setLastName("Pavick");

        // Modify an order
        AnOrder order = (AnOrder) customer.getOrders().get(0);
        order.setProduct("Kitchen Sink 001");

        // Flush changes
        das.applyChanges((DataObject) root);

    }
View Full Code Here

        // Modify a customer
        Customer customer = (Customer) root.getDataObject("Customer[1]");
        customer.setLastName("Pavick");

        // Modify an order
        AnOrder order = (AnOrder) customer.getOrders().get(0);
        order.setProduct("Kitchen Sink 001");

        // Flush changes
        das.applyChanges((DataObject) root);

    }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.das.rdb.test.customer.AnOrder

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.