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

org.hibernate.id.insert.Binder Maven / Gradle / Ivy

There is a newer version: 3.6.0.Beta2
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy