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

com.github.aidensuen.mongo.provider.base.BaseUpdateProvider Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
package com.github.aidensuen.mongo.provider.base;

import com.github.aidensuen.mongo.core.MongoDaoRepository;
import com.github.aidensuen.mongo.core.MongoDaoStatement;
import com.github.aidensuen.mongo.provider.MongoProvider;

public class BaseUpdateProvider extends MongoProvider {

    public BaseUpdateProvider(Class mongoDaoClass, MongoDaoRepository mongoDaoRepository) {
        super(mongoDaoClass, mongoDaoRepository);
    }

    public void updateById(MongoDaoStatement ms) {
        getEntityClass(ms);
    }

    public void updateByIdSelective(MongoDaoStatement ms) {
        getEntityClass(ms);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy