use of org.onebusaway.container.cache.CacheKeyInfo in project onebusaway-application-modules by camsys.
the class ArrivalsAndDeparturesQueryBeanCacheableObjectKeyFactory method createKey.
@Override
public CacheKeyInfo createKey(Object object) {
ArrivalsAndDeparturesQueryBean query = (ArrivalsAndDeparturesQueryBean) object;
query = new ArrivalsAndDeparturesQueryBean(query);
query.setTime(snapTime(query.getTime()));
return new CacheKeyInfo(query, false);
}
Aggregations