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

com.cherokeesoft.db.utils.api.DeleteModelDao Maven / Gradle / Ivy

There is a newer version: 1.8.29
Show newest version
package com.cherokeesoft.db.utils.api;


import com.cherokeesoft.db.utils.exception.DataException;
import org.springframework.transaction.annotation.Transactional;

import java.util.Arrays;
import java.util.List;

@Deprecated
public interface DeleteModelDao {
    int batchDelete(List ids) throws DataException;

    default int delete(ID id) throws DataException {
        return batchDelete(Arrays.asList(id));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy