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

org.camunda.feel.playground.dto.FeelEvaluationRequest Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package org.camunda.feel.playground.dto;

import java.util.Map;

public class FeelEvaluationRequest {

  public String expression;
  public Map context;
  public Map metadata;

  public String getExpression() {
    return expression;
  }

  public void setExpression(final String expression) {
    this.expression = expression;
  }

  public Map getContext() {
    return context;
  }

  public void setContext(final Map context) {
    this.context = context;
  }

  public Map getMetadata() {
    return metadata;
  }

  public void setMetadata(final Map metadata) {
    this.metadata = metadata;
  }

  @Override
  public String toString() {
    return "FeelEvaluationRequest{"
        + "expression='"
        + expression
        + '\''
        + ", context="
        + context
        + ", metadata="
        + metadata
        + '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy