![JAR search and dependency download from the Maven repository](/logo.png)
com.despegar.integration.mongo.entities.BulkResult 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.entities;
public class BulkResult {
private Integer modified;
private Integer removed;
private Integer inserted;
public BulkResult(Integer modified, Integer removed, Integer inserted){
this.modified = modified;
this.removed = removed;
this.inserted = inserted;
}
public Integer getModified() {
return modified;
}
public void setModified(Integer modified) {
this.modified = modified;
}
public Integer getRemoved() {
return removed;
}
public void setRemoved(Integer removed) {
this.removed = removed;
}
public Integer getInserted() {
return inserted;
}
public void setInserted(Integer inserted) {
this.inserted = inserted;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy