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

org.hotrod.runtime.interfaces.Seekable Maven / Gradle / Ivy

package org.hotrod.runtime.interfaces;

import java.sql.SQLException;

import org.apache.ibatis.session.SqlSession;

public interface Seekable extends Persistable {

  public int updateByPK() throws SQLException;

  public int updateByPK(final SqlSession sqlSession) throws SQLException;

  public int deleteByPK() throws SQLException;

  public int deleteByPK(final SqlSession sqlSession) throws SQLException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy