Java Agent Development Framework
   HOME

TheInfoList



OR:

Java Agent Development Framework, or JADE, is a
software framework In computer programming, a software framework is a software abstraction that provides generic functionality which developers can extend with custom code to create applications. It establishes a standard foundation for building and deploying soft ...
for the development of
software agent In computer science, a software agent is a computer program that acts for a user or another program in a relationship of agency. The term ''agent'' is derived from the Latin ''agere'' (to do): an agreement to act on one's behalf. Such "action on ...
s, implemented in
Java Java is one of the Greater Sunda Islands in Indonesia. It is bordered by the Indian Ocean to the south and the Java Sea (a part of Pacific Ocean) to the north. With a population of 156.9 million people (including Madura) in mid 2024, proje ...
. JADE system supports coordination between several agents FIPA and provides a standard implementation of the communication language FIPA-ACL, which facilitates the communication between agents and allows the services detection of the system. JADE was originally developed by
Telecom Italia TIM S.p.A. (formerly Telecom Italia S.p.A.) is an Italian telecommunications company with headquarters in Rome, Milan, and Naples (with the Telecom Italia Tower), which provides fixed, public and mobile telephony, and DSL data services. It is ...
and is distributed as
free software Free software, libre software, libreware sometimes known as freedom-respecting software is computer software distributed open-source license, under terms that allow users to run the software for any purpose as well as to study, change, distribut ...
.


Resume

JADE is a
middleware Middleware is a type of computer software program that provides services to software applications beyond those available from the operating system. It can be described as "software glue". Middleware makes it easier for software developers to imple ...
which facilitates the development of multi-agent systems under the standard FIPA for which purpose it creates multiple containers for agents, each of them can run on one or more systems. It's understood that a set of containers constitutes a platform. JADE provides: * An environment where JADE agents are executed * Class libraries to create agents using heritage and redefinition of behaviors * A graphical toolkit to monitoring and managing the platform of
intelligent agent In artificial intelligence, an intelligent agent is an entity that Machine perception, perceives its environment, takes actions autonomously to achieve goals, and may improve its performance through machine learning or by acquiring knowledge r ...
s


History

JADE was initially developed by Telecom Italia Lab. This sector is the R & D branch of Telecom Italia Group which is responsible for promoting technological innovation.
Telecom Italia TIM S.p.A. (formerly Telecom Italia S.p.A.) is an Italian telecommunications company with headquarters in Rome, Milan, and Naples (with the Telecom Italia Tower), which provides fixed, public and mobile telephony, and DSL data services. It is ...
conceived and promoted JADE by basing it in 2000. The latest available dates from December 2022 (version 4.6.0). The first version of JADE distributed as
free software Free software, libre software, libreware sometimes known as freedom-respecting software is computer software distributed open-source license, under terms that allow users to run the software for any purpose as well as to study, change, distribut ...
is available from February 2000 (versión 1.3). In March 2003
Motorola Motorola, Inc. () was an American multinational telecommunications company based in Schaumburg, Illinois. It was founded by brothers Paul and Joseph Galvin in 1928 and had been named Motorola since 1947. Many of Motorola's products had been ...
and
Telecom Italia TIM S.p.A. (formerly Telecom Italia S.p.A.) is an Italian telecommunications company with headquarters in Rome, Milan, and Naples (with the Telecom Italia Tower), which provides fixed, public and mobile telephony, and DSL data services. It is ...
created the JADE Governing Board with the objective of promoting the development and adoption of JADE in the mobile telecommunications industry as
middleware Middleware is a type of computer software program that provides services to software applications beyond those available from the operating system. It can be described as "software glue". Middleware makes it easier for software developers to imple ...
based. The JADE Governing Board accepts any company and/or organization interested in the commercial use and exploitation of JADE to commit to its development and promotion. In 2021, the team that successfully developed JADE announced that they could not continue to work on it anymore. A team of researcher
forked it
is now pursuing the platform development.


Platform

JADE is a distributed agents platform, which has a container for each host where you are running the agents. Additionally, the platform has various debugging tools, mobility of code and content agents, the possibility of parallel execution of the behavior of agents, as well as support for the definition of languages and
ontologies In information science, an ontology encompasses a representation, formal naming, and definitions of the categories, properties, and relations between the concepts, data, or entities that pertain to one, many, or all domains of discourse. More ...
. Each platform must have a parent container that has two special agents called AMS and DF. * The DF (Directory Facilitator) provides a directory which announces which agents are available on the platform. * The AMS (Agent Management System) controls the platform. It is the only one who can create and destroy other agents, destroy containers and stop the platform.


DF Agent

To access the DF agent the class "jade.domain.DFService" and its static methods are used: ''register, deregister, modify'' and ''Search''.


AMS agent

To access the AMS Service an agent is created which automatically runs the ''register'' method of the AMS by default before executing the method ''setup'' from the new agent. When an agent is destroyed it executes its ''takeDown()'' method by default and automatically calls the ''deregister'' method of the AMS.


Agent class

The Agent class is a superclass which allows the users to create JADE agents. To create an agent one needs to inherit directly from ''Agent''. Normally, each agent recorder several services which they should be implemented by one or more behaviors. This class provides methods to perform the basic tasks of the agents as: * Pass messages by objects ACLMessage, with pattern matching * Support the life cycle of an agent * Plan and execute multiple activities at the same time


JADE agent

The cycle of life of a JADE agent follows the cycle proposed by FIPA. These agents go through different states defined as: # Initiated: The agent has been created but has not registered yet the AMS. # Active: The agent has been registered and has a name. In this state, it can communicate with other agents. # Suspended: The agent is stopped because its thread is suspended. # Waiting: The agent is blocked waiting for an event. # Deleted: The agent has finished and his thread ended his execute and there is not any more in the AMS. # Transit: The agent is moving to a new location.


Agents' behaviour

The behavior defines the actions under a given event. This behavior of the agent is defined in the method ''setup'' using the method ''addBehaviour''. The different behaviors that the agent will adopt are defined from the abstract class Behaviour. The class Behaviour contains the abstract methods: * action (): Is executed when the action takes place. * done (): Is executed at the end of the performance. A user can override the methods ''onStart ()'' and'' OnEnd ()'' property. Additionally, there are other methods such as block'' ()'' and'' restart ()'' used for modifying the agent's behavior. When an agent is locked it can be unlocked in different ways. Otherwise the user can override the methods ''onStart()'' and ''onEnd()'' the agent possess.


Unlock an agent

# Receiving a message. # When the timeout happens associated with block (). # Calling restart.


ACL messages

Message passing ACL (Agent Communication Language) is the base of communication between agents. Sending messages is done by the method ''send'' of the class Agent. In this method, you have to pass an object of type ACLMessage that contains the recipient information, language, coding and content of the message. These messages are sent asynchronously, while messages are received they will be stored in a message queue. There are two types of receiving ACL messages, blocking or non-blocking. For this provide methods ''blockingReceive ()'' and ''receive ()'' respectively. In both methods, you can make filtering messages to be retrieved from the queue by setting different templates.


Extensions

JADE has an extension denominated WADE (Workflows and Agents Development Environment) which is a system of
workflow Workflow is a generic term for orchestrated and repeatable patterns of activity, enabled by the systematic organization of resources into processes that transform materials, provide services, or process information. It can be depicted as a seque ...
which allows create process by a graphic editor named WOLF.


See also

*
Multi-agent system A multi-agent system (MAS or "self-organized system") is a computerized system composed of multiple interacting intelligent agents.H. Pan; M. Zahmatkesh; F. Rekabi-Bana; F. Arvin; J. HuT-STAR: Time-Optimal Swarm Trajectory Planning for Quadroto ...
*
Autonomous agent An autonomous agent is an artificial intelligence (AI) system that can perform complex tasks independently. Definitions There are various definitions of autonomous agent. According to Brustoloni (1991): According to Maes (1995): Franklin ...
*
Intelligent agent In artificial intelligence, an intelligent agent is an entity that Machine perception, perceives its environment, takes actions autonomously to achieve goals, and may improve its performance through machine learning or by acquiring knowledge r ...
*
Cognitive architecture A cognitive architecture is both a theory about the structure of the human mind and to a computational instantiation of such a theory used in the fields of artificial intelligence (AI) and computational cognitive science. These formalized models ...
*
Agent Communications Language Agent Communication Language (ACL), are computer communication protocols that are intended for AI Agents to communication with each other. During the 2007, protocols of this nature were proposed which include: * FIPA-ACL (by the Foundation for In ...


References


Jade news archiveWade User Guide''Developing Multi-Agent Systems with JADE''
Volume 7 Wiley Series in Agent Technology, Fabio Luigi Bellifemine, Giovanni Caire, Dominic Greenwood
and Trust in Agent-Oriented Middleware''
Sixth International, OTM 2003 Workshops. OTM 2003. Lecture Notes in Computer Science, vol 2889. Springer, Berlin, A Poggi, M Tomaiuolo, G Vitaglione.


External links

* {{Official website *

*

Agent-based software Java platform software