Package de.marcusschiesser.dbpendler.common.vo

Examples of de.marcusschiesser.dbpendler.common.vo.CommitVO


    // do transaction
    try {
      HTTPSession session = Login.getInstance().login(login, pin);
      Date bookDate = DateUtils.getDateFormat().parse(date);
      Date bookTime = DateUtils.getTimeFormat().parse(time);
      CommitVO commitData = Booking.getInstance().doBooking(session, start, destination,
          bookDate, bookTime, bookingType, reservationType, paymentType,
          creditCardCheckNumber);
      Login.getInstance().logout(session);
      return commitData;
    } catch (ParseException e) {
View Full Code Here


  public boolean isValid() {
    return orderNumber!=null;
  }
 
  public CommitVO getCommitData() {
    return new CommitVO(start, destination, date, time, reservation, orderNumber);
  }
View Full Code Here

TOP

Related Classes of de.marcusschiesser.dbpendler.common.vo.CommitVO

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.