Examples of RESProfileType


Examples of org.talend.services.reservation.types.RESProfileType

  public int search(String userName, String pickupDate, String returnDate) {
    LoginUserType loginUser = new LoginUserType();
    loginUser.setUsername(userName);
    customer = crms.getCRMInformation(loginUser);

    RESProfileType reservationProfile = new RESProfileType();
    reservationProfile.setFromDate(pickupDate);
    reservationProfile.setToDate(returnDate);
    reservationProfile.setCrmStatus(customer.getStatus());
    cars = reserve.getAvailableCars(reservationProfile);
    return cars.getCar().size();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.