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

xyz.block.ftl.deployment.VerbClientBuildItem Maven / Gradle / Ivy

There is a newer version: 0.398.1
Show newest version
package xyz.block.ftl.deployment;

import java.util.HashMap;
import java.util.Map;

import org.jboss.jandex.DotName;

import io.quarkus.builder.item.SimpleBuildItem;

public final class VerbClientBuildItem extends SimpleBuildItem {

    final Map verbClients;

    public VerbClientBuildItem(Map verbClients) {
        this.verbClients = new HashMap<>(verbClients);
    }

    public Map getVerbClients() {
        return verbClients;
    }

    public record DiscoveredClients(String name, String module, String generatedClient) {

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy