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

io.quarkus.mongodb.panache.kotlin.deployment.KotlinPanacheMongoRepositoryEnhancer Maven / Gradle / Ivy

package io.quarkus.mongodb.panache.kotlin.deployment;

import java.util.Collections;

import org.jboss.jandex.DotName;
import org.jboss.jandex.IndexView;
import org.objectweb.asm.ClassVisitor;

import io.quarkus.panache.common.deployment.PanacheRepositoryEnhancer;
import io.quarkus.panache.common.deployment.TypeBundle;
import io.quarkus.panache.common.deployment.visitors.KotlinPanacheClassOperationGenerationVisitor;

public class KotlinPanacheMongoRepositoryEnhancer extends PanacheRepositoryEnhancer {
    private final TypeBundle types;

    public KotlinPanacheMongoRepositoryEnhancer(IndexView index, TypeBundle types) {
        super(index);
        this.types = types;
    }

    @Override
    public ClassVisitor apply(String className, ClassVisitor outputClassVisitor) {
        return new KotlinPanacheClassOperationGenerationVisitor(outputClassVisitor,
                indexView.getClassByName(DotName.createSimple(className)), indexView, types,
                types.repositoryBase(), Collections.emptyList());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy