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

org.onetwo.dbm.event.spi.DbmFindEvent Maven / Gradle / Ivy

The newest version!
package org.onetwo.dbm.event.spi;

import org.onetwo.dbm.event.internal.DbmSessionEventSource;

public class DbmFindEvent extends DbmSessionEvent {

	public DbmFindEvent(Object object, DbmSessionEventSource eventSource) {
		super(object, DbmEventAction.find, eventSource);
	}

	private Object resultObject;
	private boolean findAll;

	public Object getResultObject() {
		return resultObject;
	}

	public void setResultObject(Object resultObject) {
		this.resultObject = resultObject;
	}

	public boolean isFindAll() {
		return findAll;
	}

	public void setFindAll(boolean findAll) {
		this.findAll = findAll;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy