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

com.evento.parser.model.payload.Event Maven / Gradle / Ivy

The newest version!
package com.evento.parser.model.payload;

/**
 * The Event class represents an event payload.
 * It extends the Payload class and inherits its properties and methods.
 */
public class Event extends Payload {
	/**
	 * Constructs a new Event object with the specified name.
	 *
	 * @param name the name of the event
	 */
	public Event(String name) {
		super(name);
	}

	/**
	 * Constructs a new Event object.
	 *
	 * @see Payload#Payload()
	 */
	public Event() {
		super();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy