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

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

The newest version!
package com.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 - 2024 Weber Informatics LLC | Privacy Policy