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

io.quarkiverse.mybatis.deployment.MyBatisMapperBuildItem Maven / Gradle / Ivy

There is a newer version: 2.2.4
Show newest version
package io.quarkiverse.mybatis.deployment;

import org.jboss.jandex.DotName;

import io.quarkus.builder.item.MultiBuildItem;

public final class MyBatisMapperBuildItem extends MultiBuildItem {
    private final DotName mapperName;
    private final String dataSourceName;

    public MyBatisMapperBuildItem(DotName mapperName, String dataSourceName) {
        this.mapperName = mapperName;
        this.dataSourceName = dataSourceName;
    }

    public DotName getMapperName() {
        return mapperName;
    }

    public String getDataSourceName() {
        return dataSourceName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy