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

org.picketlink.idm.event.AbstractBaseEvent Maven / Gradle / Ivy

The newest version!
package org.picketlink.idm.event;

/**
 * A base class for all event class that provides an event context
 * 
 * @author Shane Bryzak
 */
public abstract class AbstractBaseEvent {
    private EventContext context = new EventContext();

    public EventContext getContext() {
        return context;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy