jadex.bdi.cmsagent.CMSCreateComponentPlan 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.cmsagent;
import jadex.bdi.runtime.IGoal;
import jadex.bdi.runtime.Plan;
import jadex.bridge.IComponentIdentifier;
import jadex.bridge.fipa.CMSCreateComponent;
import jadex.bridge.fipa.Done;
/**
* Create an component.
*/
public class CMSCreateComponentPlan extends Plan
{
/**
* The body method is called on the
* instatiated plan instance from the scheduler.
*/
public void body()
{
CMSCreateComponent ca = (CMSCreateComponent)getParameter("action").getValue();
IGoal cag = createGoal("cms_create_component");
cag.getParameter("name").setValue(ca.getName());
cag.getParameter("type").setValue(ca.getType());
cag.getParameter("configuration").setValue(ca.getConfiguration());
cag.getParameter("arguments").setValue(ca.getArguments());
cag.getParameter("suspend").setValue(new Boolean(ca.isSuspend()));
cag.getParameter("master").setValue(new Boolean(ca.isMaster()));
cag.getParameter("parent").setValue(ca.getParent());
cag.getParameter("rid").setValue(ca.getResourceIdentifier());
dispatchSubgoalAndWait(cag);
ca.setComponentIdentifier((IComponentIdentifier)cag.getParameter("componentidentifier").getValue());
getParameter("result").setValue(new Done(ca));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy