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

org.jbpm.workflow.instance.node.CatchLinkNodeInstance Maven / Gradle / Ivy

There is a newer version: 7.74.1.Final
Show newest version
package org.jbpm.workflow.instance.node;

import org.kie.api.runtime.process.NodeInstance;
import org.jbpm.workflow.instance.impl.NodeInstanceImpl;

public class CatchLinkNodeInstance extends NodeInstanceImpl {

	private static final long serialVersionUID = 20110505L;

	@Override
	public void internalTrigger(NodeInstance from, String type) {
		this.triggerCompleted();

	}

	public void triggerCompleted() {
		this.triggerCompleted(
				org.jbpm.workflow.core.Node.CONNECTION_DEFAULT_TYPE, true);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy