com.dropchop.quarkus.snakejar.deployment.QuarkusSnakeJarInvokerNameBuildItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-snakejar-deployment Show documentation
Show all versions of quarkus-snakejar-deployment Show documentation
Quarkus extension that integrates SnakeJar Java library with embedded CPython to Quarkus.
This extension enables calling Python native code from Quarkus REST services.
package com.dropchop.quarkus.snakejar.deployment;
import io.quarkus.builder.item.MultiBuildItem;
/**
* @author Nikola Ivačič on 6. 11. 21.
*/
public final class QuarkusSnakeJarInvokerNameBuildItem extends MultiBuildItem {
private final String name;
public QuarkusSnakeJarInvokerNameBuildItem(String name) {
this.name = name;
}
public String getName() {
return name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy