All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.onebusaway.gtfs.services.GenericMutableDao Maven / Gradle / Ivy

There is a newer version: 1.3.4
Show newest version
package org.onebusaway.gtfs.services;

import java.io.Serializable;

import org.onebusaway.gtfs.model.IdentityBean;

public interface GenericMutableDao extends GenericDao {
  
  public void open();

  public void saveEntity(Object entity);

  public > void removeEntity(
      T entity);

  public  void clearAllEntitiesForType(Class type);
  
  public void flush();
  
  public void close();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy