Package io.camunda.zeebe.gateway.rest
Annotation Interface ConditionalOnRestGatewayEnabled
@Retention(RUNTIME)
@Target({TYPE,METHOD})
@Documented
@ConditionalOnWebApplication
@ConditionalOnProperty(name={"zeebe.broker.gateway.enable","camunda.rest.enabled"},
havingValue="true",
matchIfMissing=true)
public @interface ConditionalOnRestGatewayEnabled
The REST API is disabled when either the
zeebe.broker.gateway.enable or
camunda.rest.enabled property is set to false. By default, both are considered to be set
to true when missing, the REST API is thus enabled by default.