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

io.ebeaninternal.api.SpiPersistenceContext Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebeaninternal.api;

import io.ebean.bean.PersistenceContext;

import java.util.List;

/**
 * SPI extension to PersistenceContext.
 */
public interface SpiPersistenceContext extends PersistenceContext {

  /**
   * Return the list of dirty beans held by this persistence context.
   */
  List dirtyBeans(SpiBeanTypeManager manager);

}