This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package eu.venthe.pipeline.orchestrator; | |
| import eu.venthe.pipeline.gerrit.invoker.ApiClient; | |
| import lombok.RequiredArgsConstructor; | |
| import lombok.SneakyThrows; | |
| import lombok.extern.slf4j.Slf4j; | |
| import net.bytebuddy.ByteBuddy; | |
| import net.bytebuddy.dynamic.loading.ClassLoadingStrategy; | |
| import net.bytebuddy.implementation.MethodDelegation; | |
| import net.bytebuddy.implementation.bind.annotation.AllArguments; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import org.springframework.stereotype.Service; | |
| import org.springframework.transaction.annotation.Propagation; | |
| import org.springframework.transaction.annotation.Transactional; | |
| import java.util.concurrent.Callable; | |
| /** | |
| * Service which allows any arbitrary code to run on new transaction. | |
| */ | |
| @Service |