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

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

@Deprecated
public abstract class CommonModelDao implements GetModelDao, DeleteModelDao, InsertModelDao, UpdateModelDao {

    @Override
    public int delete(I i) throws DataException {
        return DeleteModelDao.super.delete(i);
    }

    @Override
    public M get(F f) throws DataException {
        return GetModelDao.super.get(f);
    }

    @Override
    public I insert(M m) throws DataException {
        return InsertModelDao.super.insert(m);
    }

    @Override
    public int update(M m) throws DataException {
        return UpdateModelDao.super.update(m);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy