jadex.gpmn.model.MBpmnPlan Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-kernel-gpmn Show documentation
Show all versions of jadex-kernel-gpmn Show documentation
The Jadex GPMN (goal oriented process modeling
notation) kernel provides a goal-oriented workflow
kernel. The idea is that a workflow is specified as
declarative goal hierarchy, which describes what has
to be achieved to fulfill the workflow. At runtime
goals are pursued by executing plans represented by
standard BPMN workflows. The execution of goal-based
workflows is achieved by conversion to BDI agents.
The newest version!
package jadex.gpmn.model;
public class MBpmnPlan
{
/** The id. */
protected String id;
/** The name. */
protected String name;
/** The BPMN plan. */
protected String planref;
/** The precondition. */
protected String precondition;
/** The contextcondition. */
protected String contextcondition;
/**
* Get the id.
* @return The id.
*/
public String getId()
{
return this.id;
}
/**
* Set the id.
* @param id the id to set.
*/
public void setId(String id)
{
this.id = id;
}
/**
* Get the name.
* @return The name.
*/
public String getName()
{
return name;
}
/**
* Set the name.
* @param name The name to set.
*/
public void setName(String name)
{
this.name = name;
}
/**
* Get the planref.
* @return The planref.
*/
public String getPlanref()
{
return planref;
}
/**
* Set the planref.
* @param planref The planref to set.
*/
public void setPlanref(String planref)
{
this.planref = planref;
}
/**
* Get the precondition.
* @return The precondition.
*/
public String getPreCondition()
{
return precondition;
}
/**
* Set the precondition.
* @param precondition The precondition to set.
*/
public void setPreCondition(String precondition)
{
this.precondition = precondition;
}
/**
* Get the contextcondition.
* @return The contextcondition.
*/
public String getContextCondition()
{
return contextcondition;
}
/**
* Set the contextcondition.
* @param contextcondition The contextcondition to set.
*/
public void setContextCondition(String contextcondition)
{
this.contextcondition = contextcondition;
}
}