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

io.quarkus.neo4j.deployment.Neo4jDriverBuildItem Maven / Gradle / Ivy

There is a newer version: 4.4.0
Show newest version
package io.quarkus.neo4j.deployment;

import org.neo4j.driver.Driver;

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

/**
 * Allows access to the Neo4j Driver instance from within other extensions.
 */
public final class Neo4jDriverBuildItem extends SimpleBuildItem {

    private final RuntimeValue value;

    public Neo4jDriverBuildItem(RuntimeValue value) {
        this.value = value;
    }

    public RuntimeValue getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy