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

io.quarkus.resteasy.reactive.jackson.deployment.processor.JacksonFeatureBuildItem Maven / Gradle / Ivy

There is a newer version: 3.15.2
Show newest version
package io.quarkus.resteasy.reactive.jackson.deployment.processor;

import io.quarkus.builder.item.MultiBuildItem;

/**
 * Contains the special Jackson features required by the application
 */
public final class JacksonFeatureBuildItem extends MultiBuildItem {

    private final Feature feature;

    public JacksonFeatureBuildItem(Feature feature) {
        this.feature = feature;
    }

    public Feature getFeature() {
        return feature;
    }

    public enum Feature {
        JSON_VIEW,
        CUSTOM_SERIALIZATION
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy