org.evento.parser.model.component.Invoker 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.InvocationHandler;
import java.util.List;
/**
* The {@code Invoker} class represents a component that handles invocations. It extends the {@code Component} class.
* It provides a list of invocation handlers that can be set and accessed.
*/
public class Invoker extends Component {
private List invocationHandlers;
/**
* Retrieves the list of invocation handlers associated with this Invoker object.
*
* @return A List of InvocationHandler objects representing the invocation handlers.
*/
public List getInvocationHandlers() {
return invocationHandlers;
}
/**
* Sets the list of invocation handlers.
*
* @param invocationHandlers the list of invocation handlers to be set. It should not be null.
*/
public void setInvocationHandlers(List invocationHandlers) {
this.invocationHandlers = invocationHandlers;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy