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

instep.dao.sql.TableDeletePlan.kt Maven / Gradle / Ivy

The newest version!
package instep.dao.sql

import instep.dao.sql.impl.DefaultTableDeletePlan

interface TableDeletePlan : SQLPlan, WhereClause {
    fun whereKey(key: Any): TableDeletePlan
}

interface TableDeletePlanFactory {
    fun createInstance(table: Table): T

    companion object : TableDeletePlanFactory {
        override fun createInstance(table: Table): TableDeletePlan {
            return DefaultTableDeletePlan(table)
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy