org.hibernate.id.insert.Binder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate Show documentation
Show all versions of hibernate Show documentation
Relational Persistence for Java
package org.hibernate.id.insert;
import java.sql.PreparedStatement;
import java.sql.SQLException;
/**
* @author Steve Ebersole
*/
public interface Binder {
public void bindValues(PreparedStatement ps) throws SQLException;
public Object getEntity();
}