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

org.kuali.common.util.SyncResult Maven / Gradle / Ivy

package org.kuali.common.util;

import java.io.File;
import java.util.List;

public class SyncResult {

	List adds;
	List updates;
	List deletes;

	public List getAdds() {
		return adds;
	}

	public void setAdds(List adds) {
		this.adds = adds;
	}

	public List getUpdates() {
		return updates;
	}

	public void setUpdates(List updates) {
		this.updates = updates;
	}

	public List getDeletes() {
		return deletes;
	}

	public void setDeletes(List deletes) {
		this.deletes = deletes;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy