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

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

There is a newer version: ev1.10.2
Show newest version
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();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy