jadex.bdi.planlib.cms.CMSRemoteResumeComponentPlan Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-applib-bdi Show documentation
Show all versions of jadex-applib-bdi Show documentation
The Jadex applib BDI package contain
ready to use functionalities for
BDI agents mostly in form of modules
called capabilities.
package jadex.bdi.planlib.cms;
import jadex.base.fipa.CMSResumeComponent;
import jadex.base.fipa.SFipa;
import jadex.bdi.runtime.IGoal;
import jadex.bdi.runtime.Plan;
import jadex.bridge.IComponentIdentifier;
/**
* Suspend an component on a remote cms.
*/
public class CMSRemoteResumeComponentPlan extends Plan
{
/**
* The body method is called on the
* instatiated plan instance from the scheduler.
*/
public void body()
{
CMSResumeComponent ra = new CMSResumeComponent();
ra.setComponentIdentifier((IComponentIdentifier)getParameter("componentidentifier").getValue());
IGoal req = createGoal("rp_initiate");
req.getParameter("receiver").setValue(getParameter("cms").getValue());
req.getParameter("action").setValue(ra);
req.getParameter("ontology").setValue(SFipa.COMPONENT_MANAGEMENT_ONTOLOGY_NAME);
dispatchSubgoalAndWait(req);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy