
jadex.extension.rs.publish.annotation.MethodMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-platform-extension-webservice Show documentation
Show all versions of jadex-platform-extension-webservice Show documentation
The Jadex webservice platform extension package contains
basic functionality for WSDL web services and REST web services.
The newest version!
package jadex.extension.rs.publish.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Method mapper annotation. Can be used to express
* to what exact Jadex service method a call should be routed to.
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface MethodMapper
{
/**
* The method name.
*/
public String value();
/**
* The method parameters.
*/
public Class>[] parameters() default {};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy