org.evento.parser.model.payload.ServiceCommand 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 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 - 2025 Weber Informatics LLC | Privacy Policy