Package org.onebusaway.container.cache

Examples of org.onebusaway.container.cache.CacheKeyInfo


*/
public class IdentityBeanCacheableObjectKeyFactory implements
    CacheableObjectKeyFactory {

  public CacheKeyInfo createKey(Object object) {
    return new CacheKeyInfo(((IdentityBean<?>) object).getId(),false);
  }
View Full Code Here


public class IdentityBeanCacheableObjectKeyFactory implements
    CacheableObjectKeyFactory {

  public CacheKeyInfo createKey(Object object) {
    return new CacheKeyInfo(((IdentityBean<?>) object).getId(), false);
  }
View Full Code Here

  @Override
  public CacheKeyInfo createKey(Object object) {
    ArrivalsAndDeparturesQueryBean query = (ArrivalsAndDeparturesQueryBean) object;
    query = new ArrivalsAndDeparturesQueryBean(query);
    query.setTime(snapTime(query.getTime()));
    return new CacheKeyInfo(query, false);
  }
View Full Code Here

TOP

Related Classes of org.onebusaway.container.cache.CacheKeyInfo

Copyright © 2018 www.massapicom. 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.