org.evento.parser.model.component.Saga 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.component;
import org.evento.parser.model.handler.SagaEventHandler;
import java.util.List;
/**
* The Saga class represents a saga component. It extends the Component class and provides additional properties and methods specific to sagas.
*/
public class Saga extends Component {
private List sagaEventHandlers;
/**
* Retrieves the list of saga event handlers.
*
* @return A List of SagaEventHandler objects representing the saga event handlers.
*/
public List getSagaEventHandlers() {
return sagaEventHandlers;
}
/**
* Sets the list of saga event handlers for the Saga object.
*
* @param sagaEventHandlers The list of SagaEventHandler objects representing the saga event handlers to be set.
*/
public void setSagaEventHandlers(List sagaEventHandlers) {
this.sagaEventHandlers = sagaEventHandlers;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy