Codota Logo
FlowObject
Code IndexAdd Codota to your IDE (free)

How to use
FlowObject
in
org.jboss.bpm.model

Best Java code snippets using org.jboss.bpm.model.FlowObject (Showing top 11 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Charset c =
  • Codota IconString charsetName;Charset.forName(charsetName)
  • Codota IconCharset.defaultCharset()
  • Codota IconContentType contentType;contentType.getCharset()
  • Smart code suggestions by Codota
}
origin: org.jbpm.spec/jbpm-spec-ri

 public String toString()
 {
  FlowObject sourceRef = getSourceRef();
  FlowObject targetRef = getTargetRef();
  
  String srcName = null;
  if (sourceRef != null)
   srcName = (sourceRef.getName() != null ? sourceRef.getName() : sourceRef.getID().getCanonicalName());
  
  String tarName = null;
  if (targetRef != null)
   tarName = (targetRef.getName() != null ? targetRef.getName() : targetRef.getID().getCanonicalName());
  
  return "SequenceFlow[" + srcName + "->" + tarName + "]";
 }
}
origin: org.jbpm.spec/jbpm-spec-ri

DelegatingExecutionContext(FlowObject flowObject, ExecutionContext delegate)
{
 this.flowObject = flowObject;
 this.delegate = delegate;
 proc = flowObject.getProcess();
 procPrefix = proc.getName() + ".";
 activityPrefix = procPrefix + flowObject.getName() + ".";
}
origin: org.jbpm.spec/jbpm-spec-ri

public FlowObject getFlowObject(String name)
{
 if (name == null)
  throw new IllegalArgumentException("Cannot find flow object with name: null");
 FlowObject flowObject = null;
 for (FlowObject aux : flowObjects)
 {
  if (name.equals(aux.getName()))
  {
   flowObject = aux;
   break;
  }
 }
 return flowObject;
}
origin: org.jbpm.jbpm3/jbpm-integration

 @Override
 public void execute(ExecutionContext executionContext)
 {
  SignalManager sigManager = SignalManager.locateSignalManager();
  sigManager.throwSignal(new Signal(flowObject.getID(), SignalType.SYSTEM_TASK_ENTER));
  try
  {
   super.execute(executionContext);
  }
  finally
  {
   sigManager.throwSignal(new Signal(flowObject.getID(), SignalType.SYSTEM_TASK_EXIT));
  }
 }
}
origin: org.jbpm.spec/jbpm-spec-ri

public MessageSender(FlowObject fromFlowObject, Message messageRef)
{
 ObjectName procID = fromFlowObject.getProcess().getID();
 this.fromRef = new EntityImpl(procID);
 this.messageRef = messageRef;
 
 if (messageRef == null)
  throw new IllegalArgumentException("MessageRef cannot be null");
 if (fromRef == null)
  throw new IllegalArgumentException("FromRef cannot be null");
}
origin: org.jbpm.spec/jbpm-spec-dialect-api10

for (Assignment ass : flowObject.getAssignments())
origin: org.jbpm.jbpm3/jbpm-integration

public FlowObject getFlowObject(String name)
{
 for (FlowObject fo : getFlowObjects())
 {
  if (name.equals(fo.getName()))
   return fo;
 }
 return null;
}
origin: org.jbpm.jbpm3/jbpm-integration

 @Override
 public void execute(ExecutionContext executionContext)
 {
  SignalManager sigManager = SignalManager.locateSignalManager();
  sigManager.throwSignal(new Signal(flowObject.getID(), SignalType.SYSTEM_END_EVENT_ENTER));
  try
  {
   super.execute(executionContext);
  }
  finally
  {
   sigManager.throwSignal(new Signal(flowObject.getID(), SignalType.SYSTEM_END_EVENT_EXIT));
  }
 }
}
origin: org.jbpm.spec/jbpm-spec-ri

private Process getProcess(Token token)
{
 return token.getFlow().getTargetRef().getProcess();
}
origin: org.jbpm.spec/jbpm-spec-ri

String auxName = aux.getName();
if (aux != this && name.equals(auxName))
 throw new NameNotUniqueException(toString());
origin: org.jbpm.jbpm3/jbpm-integration

 @Override
 public void execute(ExecutionContext executionContext)
 {
  SignalManager sigManager = SignalManager.locateSignalManager();
  sigManager.throwSignal(new Signal(flowObject.getID(), SignalType.SYSTEM_START_EVENT_ENTER));
  try
  {
   super.execute(executionContext);
  }
  finally
  {
   sigManager.throwSignal(new Signal(flowObject.getID(), SignalType.SYSTEM_START_EVENT_EXIT));
  }
 }
}
org.jboss.bpm.modelFlowObject

Javadoc

A Flow Object is one of the set of following graphical objects: Event, Activity, and Gateway.

Most used methods

  • getID
  • getName
    Get the unique name.
  • getAssignments
    One or more assignment expressions MAY be made for the object. For activities (Task, Sub-Process, an
  • getProcess
    Get the associated Process

Popular in Java

  • Start an intent from android
  • getSystemService (Context)
  • orElseThrow (Optional)
  • setRequestProperty (URLConnection)
    Sets the general request property. If a property with the key already exists, overwrite its value wi
  • Color (java.awt)
    The Color class is used encapsulate colors in the default sRGB color space or colors in arbitrary co
  • InetAddress (java.net)
    This class represents an Internet Protocol (IP) address. An IP address is either a 32-bit or 128-bit
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • JLabel (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now