Giter Club home page Giter Club logo

camunda-addons's Introduction

holunda-io

Organizational Metrics

github-metrics.svg

camunda-addons's People

Contributors

jangalinski avatar

Stargazers

 avatar

Watchers

 avatar  avatar

camunda-addons's Issues

DMN: evaluateDecisionTable with type safe output

camundas DecisionService#evaluateDecistionTable returns an EveluationResult which basically (depending on the hit policy) returns a key/value map of output columns (or list of map).

Using jackson, it is easily possible to automatically transform these to data objects. This would allow easier access to the result and handling of missing values.

VariableReadWriteAdapter should support initializing VariableMap.

Current usage:

VariableMap map = Variables.createVariables();
VariableReadWriteAdapter adapter = VariableReadWriteAdapter.of(map);

adapter.write(FOO, "foo")

// now map contains "foo"

desired:

VariableMap map = VariableReadWriteAdapter.map()
    .write(FOO, "foo")
    .getMap();

provide platform

All dependencies and versions should be managed by a gradle java-platform project.

provide bom

Camunda does not provide a BOM for spring boot components, so we could offer an (oppinionated) BOM that provides:

  • SpringBoot
  • Camunda
  • Camunda-Spring Boot
    -these addons

avoid static dependency by register variables

If a variable requires a specific read/write converter, this might not necessarily be available from a static context (objectMapper, mapstruct, ...)
To support those cases it should be possible to define an empty variable definition and register it to a context at runtime

fluent variable writer

Once we created a variableReadWriteAdapter, it would be nice to reuse it in a fluent way.

so instead of

VariableReadWriteAdapter adapter = VariableReadWriteAdapter.of(delegateExecution);
adapter.write(FOO, "foo");
adapter.write(BAR, "bar");

support

VariableReadWriteAdapter adapter = VariableReadWriteAdapter
     .of(delegateExecution)
    .write(FOO, "foo")
    .write(BAR, "bar");

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.