com.evento.parser.model.payload.ServiceEvent 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
The newest version!
package com.evento.parser.model.payload;
/**
* The ServiceEvent class represents a service event.
* It extends the Event class and inherits its properties and methods.
*/
public class ServiceEvent extends Event {
/**
* Creates a new ServiceEvent object with the specified name.
*
* @param name the name of the event
*/
public ServiceEvent(String name) {
super(name);
}
/**
* The ServiceEvent class represents a service event.
* It extends the Event class and inherits its properties and methods.
*/
public ServiceEvent() {
super();
}
@Override
public String toString() {
return getName();
}
}