![JAR search and dependency download from the Maven repository](/logo.png)
ace.core.events.AttributesInitiatedEvent Maven / Gradle / Ivy
The newest version!
package ace.core.events;
import org.springframework.context.ApplicationEvent;
/**
* Custom ApplicationEvent
*/
public class AttributesInitiatedEvent extends ApplicationEvent {
/**
* Create a new {@code ApplicationEvent}.
*
* @param source the object on which the event initially occurred or with
* which the event is associated (never {@code null})
*/
public AttributesInitiatedEvent(Object source) {
super(source);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy