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

META-INF.BPMNWorkDefinitions.conf Maven / Gradle / Ivy

There is a newer version: 7.74.1.Final
Show newest version
// We use MVEL to return a List of work definitions
// The properties of the work definitions are specified as a Map
// The allowed properties are name, parameters, displayName, icon and customEditor
// The returned result should thus be of type List>
import org.drools.core.process.core.datatype.impl.type.StringDataType;

[

  [
    "name" : "Manual Task",
    "parameters" : [
      "Description" : new StringDataType()
    ],
    "displayName" : "Manual Task",
    "icon" : "icons/manual.gif"
  ],
  
  [
    "name" : "Service Task",
    "parameters" : [
      "Interface" : new StringDataType(),
      "Operation" : new StringDataType()
    ],
    "displayName" : "Service Task",
    "icon" : "icons/action.gif",
    "customEditor" : "org.drools.eclipse.flow.common.editor.editpart.work.SampleCustomEditor"
  ],
    
  [
    "name" : "Send Task",
    "parameters" : [
      "Implementation" : new StringDataType(),
      "Operation" : new StringDataType(),
      "Message" : new StringDataType()
    ],
    "displayName" : "Send Task",
    "icon" : "icons/send.gif",
    "customEditor" : "org.drools.eclipse.flow.common.editor.editpart.work.SampleCustomEditor"
  ],
    
  [
    "name" : "Receive Task",
    "parameters" : [
      "Implementation" : new StringDataType(),
      "Operation" : new StringDataType(),
      "Message" : new StringDataType()
    ],
    "displayName" : "Receive Task",
    "icon" : "icons/receive.gif",
    "customEditor" : "org.drools.eclipse.flow.common.editor.editpart.work.SampleCustomEditor"
  ]
    
]




© 2015 - 2024 Weber Informatics LLC | Privacy Policy