2 Replies Latest reply on Dec 8, 2015 1:53 PM by np97190

    Jbpm Custom Node

    np97190

      Hi All,

       

      Hope you are doing good.

      Requesting you to help me with jbpm custom task.

       

      I am trying to create a custom node in jbpm. In one of the documentations I saw one option as follow

      [

          "name" : "Rest",

          "parameters" : [

              "Url" : new StringDataType(),

              "Method" : new StringDataType(),

              "ConnectTimeout" : new StringDataType(),

              "ReadTimeout" : new StringDataType(),

              "Username" : new StringDataType(),

              "Password" : new StringDataType()

          ],

          "results" : [

              "Result" : new ObjectDataType(),

          ],

          "displayName" : "REST",

          "icon" : "defaultservicenodeicon.png"

        ]

       

      in this definition what is the use of "Results" and how can we use it in our process.