Package com.tuscanyscatours.common

Examples of com.tuscanyscatours.common.Book


    }

    @Test
    public void testPayment() {
        SCAClient client = (SCAClient)tripNode;
        Book booking = client.getService(Book.class, "Trip/Book");
        TripItem tripItem =
            new TripItem("1234", "5678", TripItem.TRIP, "FS1DEC06", "Florence and Siena pre-packaged tour", "FLR",
                         "06/12/09", "13/12/09", 450, "EUR", "http://localhost:8085/tbd");
        System.out.println("Result = " + booking.book(tripItem) + "\n");
    }
View Full Code Here

TOP

Related Classes of com.tuscanyscatours.common.Book

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.