com.evento.parser.model.payload.Invocation 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 com.evento.parser.model.payload;
/**
* The Invocation class represents an invocation payload.
* It extends the Payload class and inherits its properties and methods.
*/
public class Invocation extends Payload {
/**
* The Invocation class represents an invocation payload.
* It extends the Payload class and inherits its properties and methods.
* @param name the invocation name
*/
public Invocation(String name) {
super(name);
}
/**
* The Invocation class represents an invocation payload.
* It extends the Payload class and inherits its properties and methods.
*/
public Invocation() {
super();
}
}