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

com.digitolio.jdbi.GenericDAO Maven / Gradle / Ivy

There is a newer version: 0.6.8.2
Show newest version
package com.digitolio.jdbi;

import org.skife.jdbi.v2.sqlobject.BindBean;
import org.skife.jdbi.v2.sqlobject.SqlQuery;
import org.skife.jdbi.v2.sqlobject.SqlUpdate;

public interface  GenericDAO{

    @AutoDeleteByPK
    @SqlUpdate
    public Integer deleteByPK(@BindBean T t);

    @AutoUpdateByPK
    @SqlUpdate
    public Integer updateByPK(@BindBean T t);

    @AutoInsert
    @SqlUpdate
    public Integer insert(@BindBean T t);

    @AutoSelectByPK
    @StrategyAwareMapBean
    @SqlQuery
    public T selectByPK(@BindBean T t);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy