1 package mobisnap.common; 2 3 4 /*** 5 * @version 28-Mar-2001 6 * @author 7 **/ 8 public class ReservationInfo implements java.io.Serializable { 9 private String username; 10 private String reservationData; 11 12 public ReservationInfo( String username, String reservationData) 13 { 14 this.username = username; 15 this.reservationData = reservationData; 16 } 17 18 public String getUsername(){ 19 return username; 20 } 21 22 public String getReservation(){ 23 return reservationData; 24 } 25 }

This page was automatically generated by Maven