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

io.quarkiverse.cxf.deployment.RuntimeBusBuildItem Maven / Gradle / Ivy

The newest version!
package io.quarkiverse.cxf.deployment;

import org.apache.cxf.Bus;

import io.quarkus.builder.item.SimpleBuildItem;
import io.quarkus.runtime.RuntimeValue;

/**
 * Holds the runtime {@link Bus} reference.
 */
public final class RuntimeBusBuildItem extends SimpleBuildItem {
    private final RuntimeValue bus;

    public RuntimeValue getBus() {
        return bus;
    }

    public RuntimeBusBuildItem(RuntimeValue bus) {
        super();
        this.bus = bus;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy