org.evento.parser.model.payload.DomainEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of evento-parser Show documentation
Show all versions of evento-parser Show documentation
Codebase Parser to detect RECQ Components for Evento Framework
package org.evento.parser.model.payload;
/**
* The DomainEvent class represents a domain-specific event payload.
* It extends the Event class and inherits its properties and methods.
*
* Usage example:
* DomainEvent event = new DomainEvent("eventName");
*/
public class DomainEvent extends Event {
/**
* The DomainEvent class represents a domain-specific event payload.
* It extends the Event class and inherits its properties and methods.
*
* Usage example:
* DomainEvent event = new DomainEvent("eventName");
*
* @param name the name of the domain event
*/
public DomainEvent(String name) {
super(name);
}
/**
* The DomainEvent class represents a domain-specific event payload.
* It extends the Event class and inherits its properties and methods.
*/
public DomainEvent() {
super();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy