Examples of TripsForAgencyQueryBean


Examples of org.onebusaway.transit_data.model.trips.TripsForAgencyQueryBean

    long time = System.currentTimeMillis();
    if (_time != null)
      time = _time.getTime();

    TripsForAgencyQueryBean query = new TripsForAgencyQueryBean();
    query.setAgencyId(_id);
    query.setTime(time);
    query.setMaxCount(_maxCount.getMaxCount());

    TripDetailsInclusionBean inclusion = query.getInclusion();
    inclusion.setIncludeTripBean(_includeTrip);
    inclusion.setIncludeTripStatus(_includeStatus);
    inclusion.setIncludeTripSchedule(_includeSchedule);

    BeanFactoryV2 factory = getBeanFactoryV2();
View Full Code Here

Examples of org.onebusaway.transit_data.model.trips.TripsForAgencyQueryBean

    return SUCCESS;
  }

  @Validations(requiredStrings = {@RequiredStringValidator(fieldName = "agencyId", message = "missing required agencyId field")})
  public String agency() {
    TripsForAgencyQueryBean query = new TripsForAgencyQueryBean();
    query.setAgencyId(_agencyId);
    query.setMaxCount(Integer.MAX_VALUE);
    query.setTime(_time.getTime());
    query.setInclusion(new TripDetailsInclusionBean(true, false, true));

    ListBean<TripDetailsBean> result = _transitDataService.getTripsForAgency(query);

    _trips = result.getList();
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.