io.camunda.zeebe.spring.client.annotation.customizer.ZeebeWorkerValueCustomizer Maven / Gradle / Ivy
The newest version!
/*
* Copyright © 2017 camunda services GmbH ([email protected])
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.camunda.zeebe.spring.client.annotation.customizer;
import io.camunda.zeebe.spring.client.annotation.value.ZeebeWorkerValue;
/**
* This interface could be used to customize the {@link
* io.camunda.zeebe.spring.client.annotation.JobWorker} annotation's values. Just implement it and
* put it into to the {@link org.springframework.context.ApplicationContext} to make it work. But be
* careful: these customizers are applied sequentially and if you need to change the order of these
* customizers use the {@link org.springframework.core.annotation.Order} annotation or the {@link
* org.springframework.core.Ordered} interface.
*
* @see io.camunda.zeebe.spring.client.properties.PropertyBasedZeebeWorkerValueCustomizer
*/
public interface ZeebeWorkerValueCustomizer {
void customize(final ZeebeWorkerValue zeebeWorker);
}