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

jadex.bdi.examples.shop.IShopService Maven / Gradle / Ivy

Go to download

The Jadex BDI applications package contain several example applications, benchmarks and testcases using BDI agents.

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy