jadex.webservice.examples.rs.chart.ChartProviderAgent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-applications-webservice Show documentation
Show all versions of jadex-applications-webservice Show documentation
The Jadex web service applications package contains several example applications, benchmarks and testcases using web service integration.
package jadex.webservice.examples.rs.chart;
import jadex.extension.rs.invoke.RestServiceAgent;
import jadex.micro.annotation.Agent;
import jadex.micro.annotation.Implementation;
import jadex.micro.annotation.ProvidedService;
import jadex.micro.annotation.ProvidedServices;
/**
* Agent that wraps a normal rest service as Jadex service.
* In this way the web service can be used by active components
* in the same way as normal Jadex component services.
*/
@Agent
@ProvidedServices(@ProvidedService(type=IChartService.class, implementation=@Implementation(
expression="$pojoagent.createServiceImplementation(IChartService.class, IRSChartService.class)")))
public class ChartProviderAgent extends RestServiceAgent
{
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy