org.evento.parser.model.payload.Command 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 Command class represents a command payload. It extends the Payload class and inherits its properties and methods.
* Contains two constructors to create a Command object with a specified name or without a name.
*/
public class Command extends Payload {
/**
* The Command class represents a command payload. It extends the Payload class and inherits its properties and methods.
* @param name the command name
*/
public Command(String name) {
super(name);
}
/**
* The Command class represents a command payload.
* It extends the Payload class and inherits its properties and methods.
*/
public Command() {
super();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy