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

io.quarkus.jackson.spi.ClassPathJacksonModuleBuildItem Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.jackson.spi;

import io.quarkus.builder.item.MultiBuildItem;

/**
 * BuildItem used to signal that some Jackson module has been detected on the classpath
 *
 * The modules are then registered with the ObjectMapper.
 *
 * Note: Modules are assumed to have a default constructor
 */
public final class ClassPathJacksonModuleBuildItem extends MultiBuildItem {

    private final String moduleClassName;

    public ClassPathJacksonModuleBuildItem(String moduleClassName) {
        this.moduleClassName = moduleClassName;
    }

    public String getModuleClassName() {
        return moduleClassName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy