org.evento.parser.model.payload.DomainCommand 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 DomainCommand class represents a domain-specific command payload. It extends the Command class
* and inherits its properties and methods.
*
* Usage example:
*
* DomainCommand command = new DomainCommand("commandName");
*
*/
public class DomainCommand extends Command {
/**
* Creates a new instance of {@code DomainCommand} with the specified name.
*
* Usage example:
*
* DomainCommand command = new DomainCommand("commandName");
*
* @param name the name of the domain-specific command
*/
public DomainCommand(String name) {
super(name);
}
/**
* The DomainCommand class represents a domain-specific command payload. It extends the Command class
* and inherits its properties and methods.
*
* Usage example:
*
* DomainCommand command = new DomainCommand("commandName");
*
*/
public DomainCommand() { super();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy