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

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

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

import org.picketlink.idm.model.Agent;

/**
 * This event is raised when a new {@link Agent} is created
 * 
 * Pedro Silva
 */
public class AgentCreatedEvent extends AbstractBaseEvent {
    
    private Agent agent;

    public AgentCreatedEvent(Agent agent) {
        this.agent = agent;
    }

    public Agent getAgent() {
        return agent;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy