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

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

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