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

io.camunda.zeebe.spring.client.annotation.value.ZeebeAnnotationValue Maven / Gradle / Ivy

There is a newer version: 8.5.10
Show newest version
package io.camunda.zeebe.spring.client.annotation.value;

import io.camunda.zeebe.spring.client.bean.BeanInfo;

/**
 * Common type for all annotation values.
 *
 * @param  either {@link io.camunda.zeebe.spring.client.bean.ClassInfo} or {@link
 *     io.camunda.zeebe.spring.client.bean.MethodInfo}.
 */
public interface ZeebeAnnotationValue {

  /**
   * @return the context of this annotation.
   */
  B getBeanInfo();
}