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

com.despegar.integration.mongo.entities.BulkResult Maven / Gradle / Ivy

There is a newer version: 1.1.10
Show newest version
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