Advertisement
Guest User

Untitled

a guest
Aug 18th, 2013
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5.45 KB | None | 0 0
  1. package com.pkg.bean;
  2.  
  3.  
  4. public class VehicleInformationBean {
  5.  
  6.     private String PersonID, Name, PickupLocation, DropLocation, TripType,
  7.             StickerNumber, VehicleRegNo, ExpectedStartDate, ActualStartDate,
  8.             ActualEndDate, PersonScheduledDate,Shift,ColdCall;
  9.  
  10.     private boolean HasSchedule;
  11.  
  12.     private Double Latitude, Longitude;
  13.  
  14.     public VehicleInformationBean() {
  15.  
  16.     }
  17.  
  18.     public VehicleInformationBean(String personID, boolean hasSchedule,
  19.             String tripType, String stickerNumber, String vehicleRegNo,
  20.             String expectedStartDate, String actualStartDate,
  21.             String actualEndDate, String personScheduledDate, Double latitude,
  22.             Double longitude, String name, String pickupLocation,
  23.             String dropLocation,String shift,String coldCall) {
  24.         super();
  25.         PersonID = personID;
  26.         HasSchedule = hasSchedule;
  27.         TripType = tripType;
  28.         StickerNumber = stickerNumber;
  29.         VehicleRegNo = vehicleRegNo;
  30.         ExpectedStartDate = expectedStartDate;
  31.         ActualStartDate = actualStartDate;
  32.         ActualEndDate = actualEndDate;
  33.         PersonScheduledDate = personScheduledDate;
  34.         Latitude = latitude;
  35.         Longitude = longitude;
  36.         Name = name;
  37.         PickupLocation = pickupLocation;
  38.         DropLocation = dropLocation;
  39.         Shift=shift;
  40.         this.ColdCall=coldCall;
  41.  
  42.     }
  43.  
  44.     /**
  45.      * @return the coldCall
  46.      */
  47.     public String getColdCall() {
  48.         return ColdCall;
  49.     }
  50.  
  51.     /**
  52.      * @param coldCall the coldCall to set
  53.      */
  54.     public void setColdCall(String coldCall) {
  55.         this.ColdCall = coldCall;
  56.     }
  57.  
  58.     /**
  59.      * @return the shift
  60.      */
  61.     public String getShift() {
  62.         return Shift;
  63.     }
  64.  
  65.     /**
  66.      * @param shift the shift to set
  67.      */
  68.     public void setShift(String shift) {
  69.         Shift = shift;
  70.     }
  71.  
  72.     /**
  73.      * @return the personID
  74.      */
  75.     public String getPersonID() {
  76.         return PersonID;
  77.     }
  78.  
  79.     /**
  80.      * @param personID
  81.      *            the personID to set
  82.      */
  83.     public void setPersonID(String PersonID) {
  84.         this.PersonID = PersonID;
  85.     }
  86.  
  87.     /**
  88.      * @return the hasSchedule
  89.      */
  90.     public boolean isHasSchedule() {
  91.         return HasSchedule;
  92.     }
  93.  
  94.     /**
  95.      * @param hasSchedule
  96.      *            the hasSchedule to set
  97.      */
  98.     public void setHasSchedule(boolean HasSchedule) {
  99.         this.HasSchedule = HasSchedule;
  100.     }
  101.  
  102.     /**
  103.      * @return the tripType
  104.      */
  105.     public String getTripType() {
  106.         return TripType;
  107.     }
  108.  
  109.     /**
  110.      * @param tripType
  111.      *            the tripType to set
  112.      */
  113.     public void setTripType(String TripType) {
  114.         this.TripType = TripType;
  115.     }
  116.  
  117.     /**
  118.      * @return the stickerNumber
  119.      */
  120.     public String getStickerNumber() {
  121.         return StickerNumber;
  122.     }
  123.  
  124.     /**
  125.      * @param stickerNumber
  126.      *            the stickerNumber to set
  127.      */
  128.     public void setStickerNumber(String StickerNumber) {
  129.         this.StickerNumber = StickerNumber;
  130.     }
  131.  
  132.     /**
  133.      * @return the vehicleRegNo
  134.      */
  135.     public String getVehicleRegNo() {
  136.         return VehicleRegNo;
  137.     }
  138.  
  139.     /**
  140.      * @param vehicleRegNo
  141.      *            the vehicleRegNo to set
  142.      */
  143.     public void setVehicleRegNo(String VehicleRegNo) {
  144.         this.VehicleRegNo = VehicleRegNo;
  145.     }
  146.  
  147.     /**
  148.      * @return the expectedStartDate
  149.      */
  150.     public String getExpectedStartDate() {
  151.         return ExpectedStartDate;
  152.     }
  153.  
  154.     /**
  155.      * @param expectedStartDate
  156.      *            the expectedStartDate to set
  157.      */
  158.     public void setExpectedStartDate(String ExpectedStartDate) {
  159.         this.ExpectedStartDate = ExpectedStartDate;
  160.     }
  161.  
  162.     /**
  163.      * @return the actualStartDate
  164.      */
  165.     public String getActualStartDate() {
  166.         return ActualStartDate;
  167.     }
  168.  
  169.     /**
  170.      * @param actualStartDate
  171.      *            the actualStartDate to set
  172.      */
  173.     public void setActualStartDate(String ActualStartDate) {
  174.         this.ActualStartDate = ActualStartDate;
  175.     }
  176.  
  177.     /**
  178.      * @return the actualEndDate
  179.      */
  180.     public String getActualEndDate() {
  181.         return ActualEndDate;
  182.     }
  183.  
  184.     /**
  185.      * @param actualEndDate
  186.      *            the actualEndDate to set
  187.      */
  188.     public void setActualEndDate(String ActualEndDate) {
  189.         this.ActualEndDate = ActualEndDate;
  190.     }
  191.  
  192.     /**
  193.      * @return the personScheduledDate
  194.      */
  195.     public String getPersonScheduledDate() {
  196.         return PersonScheduledDate;
  197.     }
  198.  
  199.     /**
  200.      * @param personScheduledDate
  201.      *            the personScheduledDate to set
  202.      */
  203.     public void setPersonScheduledDate(String PersonScheduledDate) {
  204.         this.PersonScheduledDate = PersonScheduledDate;
  205.     }
  206.  
  207.     /**
  208.      * @return the latitude
  209.      */
  210.     public Double getLatitude() {
  211.         return Latitude;
  212.     }
  213.  
  214.     /**
  215.      * @param latitude
  216.      *            the latitude to set
  217.      */
  218.     public void setLatitude(Double Latitude) {
  219.         this.Latitude = Latitude;
  220.     }
  221.  
  222.     /**
  223.      * @return the longitude
  224.      */
  225.     public Double getLongitude() {
  226.         return Longitude;
  227.     }
  228.  
  229.     /**
  230.      * @param longitude
  231.      *            the longitude to set
  232.      */
  233.     public void setLongitude(Double Longitude) {
  234.         this.Longitude = Longitude;
  235.     }
  236.  
  237.     /**
  238.      * @return the name
  239.      */
  240.     public String getName() {
  241.         return Name;
  242.     }
  243.  
  244.     /**
  245.      * @param name
  246.      *            the name to set
  247.      */
  248.     public void setName(String Name) {
  249.         this.Name = Name;
  250.     }
  251.  
  252.     /**
  253.      * @return the pickupLocation
  254.      */
  255.     public String getPickupLocation() {
  256.         return PickupLocation;
  257.     }
  258.  
  259.     /**
  260.      * @param pickupLocation
  261.      *            the pickupLocation to set
  262.      */
  263.     public void setPickupLocation(String PickupLocation) {
  264.         this.PickupLocation = PickupLocation;
  265.     }
  266.  
  267.     /**
  268.      * @return the dropLocation
  269.      */
  270.     public String getDropLocation() {
  271.         return DropLocation;
  272.     }
  273.  
  274.     /**
  275.      * @param dropLocation
  276.      *            the dropLocation to set
  277.      */
  278.     public void setDropLocation(String DropLocation) {
  279.         this.DropLocation = DropLocation;
  280.     }
  281.  
  282. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement