com.evento.parser.model.component.Service 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
The newest version!
package com.evento.parser.model.component;
import com.evento.parser.model.handler.ServiceCommandHandler;
import java.util.List;
/**
* The Service class represents a service component.
* It extends the Component class and provides additional functionality specific to service components.
*
* The service component contains a list of service command handlers.
*/
public class Service extends Component {
private List commandHandlers;
/**
* Retrieves the list of command handlers associated with the service component.
*
* @return A List of ServiceCommandHandler objects representing the command handlers.
*/
public List getCommandHandlers() {
return commandHandlers;
}
/**
* Sets the command handlers associated with the service component.
*
* @param commandHandlers A List of ServiceCommandHandler objects representing the command handlers.
*/
public void setCommandHandlers(List commandHandlers) {
this.commandHandlers = commandHandlers;
}
}