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

com.cherokeesoft.db.utils.api.UpdateModelDao 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.Collection;

@Deprecated
public interface UpdateModelDao {
    int batchUpdate(Collection models) throws DataException;

    default int update(MODEL model) throws DataException {
        return batchUpdate(Arrays.asList(model));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy