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

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

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

/**
 * The ServiceCommand class represents a command payload specific to a service.
 * It extends the Command class and inherits its properties and methods.
 */
public class ServiceCommand extends Command {
	/**
	 * Constructs a new {@code ServiceCommand} object with the specified name.
	 *
	 * @param name the name of the command
	 * @throws NullPointerException if the {@code name} is {@code null}
	 */
	public ServiceCommand(String name) {
		super(name);
	}

	/**
	 * The ServiceCommand class represents a command payload specific to a service.
	 * It extends the Command class and inherits its properties and methods.
	 * This class provides a default constructor to create a ServiceCommand object without any arguments.
	 * 

* Example usage: * ServiceCommand command = new ServiceCommand(); */ public ServiceCommand() { super(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy