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

io.camunda.zeebe.spring.client.annotation.Variable Maven / Gradle / Ivy

The newest version!
package io.camunda.zeebe.spring.client.annotation;

import java.lang.annotation.*;

@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Variable {
  String DEFAULT_NAME = "$NULL$";

  String name() default DEFAULT_NAME;

  String value() default DEFAULT_NAME;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy