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

io.quarkiverse.web.bundler.deployment.items.GeneratedEntryPointBuildItem Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package io.quarkiverse.web.bundler.deployment.items;

import io.quarkus.builder.item.MultiBuildItem;

public final class GeneratedEntryPointBuildItem extends MultiBuildItem {

    private final String key;
    private final BundleWebAsset webAsset;

    public GeneratedEntryPointBuildItem(String key, BundleWebAsset webAsset) {
        this.key = key;
        this.webAsset = webAsset;
    }

    public String key() {
        return key;
    }

    public BundleWebAsset webAsset() {
        return webAsset;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy