jadex.bdi.examples.shop.IShopService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-applications-bdi Show documentation
Show all versions of jadex-applications-bdi Show documentation
The Jadex BDI applications package contain
several example applications, benchmarks and
testcases using BDI agents.
package jadex.bdi.examples.shop;
import jadex.commons.future.IFuture;
/**
* The shop interface for buying goods at the shop.
*/
public interface IShopService
{
/**
* Get the shop name.
* @return The name.
*/
public String getName();
/**
* Buy an item.
* @param item The item.
*/
public IFuture buyItem(String item, double price);
/**
* Get the item catalog.
* @return The catalog.
*/
public IFuture getCatalog();
}