![JAR search and dependency download from the Maven repository](/logo.png)
com.despegar.integration.mongo.query.BulkInsert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongo-connector Show documentation
Show all versions of mongo-connector Show documentation
Helper component to connect to mongo fast and easy
package com.despegar.integration.mongo.query;
import com.despegar.integration.mongo.entities.Bulkeable;
import com.despegar.integration.mongo.entities.GenericIdentifiableEntity;
import com.despegar.integration.mongo.query.BulkOperation;
public class BulkInsert> implements Bulkeable{
private T entity;
public BulkInsert(T entity){
this.entity = entity;
}
public T getEntity() {
return entity;
}
@Override
public BulkOperation getOperation() {
return BulkOperation.INSERT;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy