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

jadex.gpmn.model.MSubprocess Maven / Gradle / Ivy

Go to download

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 MSubprocess
{
	/** The id. */
	protected String id;
	
	/** The name. */
	protected String name;
	
	/** The process reference */
	protected String processreference;
	
	/** Internal process flag */
	protected boolean internal;
	
	/**
	 *  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 processreference.
	 *  @return The processreference.
	 */
	public String getProcessReference()
	{
		return processreference;
	}

	/**
	 *  Set the processreference.
	 *  @param processreference The processreference to set.
	 */
	public void setProcessReference(String processreference)
	{
		this.processreference = processreference;
	}

	/**
	 *  Get the internal flag.
	 *  @return The internal flag.
	 */
	public boolean isInternal()
	{
		return internal;
	}

	/**
	 *  Set the internal flag.
	 *  @param internal The internal flag to set.
	 */
	public void setInternal(boolean internal)
	{
		this.internal = internal;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy