io.quarkus.jackson.spi.ClassPathJacksonModuleBuildItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-jackson-spi Show documentation
Show all versions of quarkus-jackson-spi Show documentation
Artifact that provides BuildItems specific to Jackson
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