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

com.daedafusion.hibernate.Transaction Maven / Gradle / Ivy

package com.daedafusion.hibernate;

/**
 * Created by mphilpot on 7/3/14.
 */
public interface Transaction
{
    void begin();
    void commit();
    void rollback();
    void flush();
    void clear();

     T materialize(T entity);

    boolean isActive();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy