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

io.quarkus.hibernate.orm.deployment.JpaModelIndexBuildItem Maven / Gradle / Ivy

There is a newer version: 3.15.0
Show newest version
package io.quarkus.hibernate.orm.deployment;

import org.jboss.jandex.CompositeIndex;

import io.quarkus.builder.item.SimpleBuildItem;

/**
 * Provides the Jandex index of the application, combined with the index
 * of additional JPA components that might have been generated.
 *
 * @author Sanne Grinovero 
 */
public final class JpaModelIndexBuildItem extends SimpleBuildItem {

    private final CompositeIndex index;

    public JpaModelIndexBuildItem(CompositeIndex index) {
        this.index = index;
    }

    public CompositeIndex getIndex() {
        return index;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy