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

org.mentabean.event.TriggerEvent Maven / Gradle / Ivy

There is a newer version: 2.2.4
Show newest version
package org.mentabean.event;

import org.mentabean.BeanSession;

public class TriggerEvent {

	private final BeanSession session;
	private final Object bean;
	
	public TriggerEvent(final BeanSession session, final Object bean) {
		this.session = session;
		this.bean = bean;
	}

	public BeanSession getSession() {
		return session;
	}

	@SuppressWarnings("unchecked")
	public  E getBean() {
		return (E) bean;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy