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

io.quarkus.resteasy.reactive.jackson.runtime.security.SecurityCustomSerialization Maven / Gradle / Ivy

package io.quarkus.resteasy.reactive.jackson.runtime.security;

import java.lang.reflect.Type;
import java.util.function.BiFunction;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.ObjectWriter;
import com.fasterxml.jackson.databind.ser.impl.SimpleFilterProvider;

public class SecurityCustomSerialization implements BiFunction {

    private static volatile ObjectWriter writer;

    @Override
    public ObjectWriter apply(ObjectMapper objectMapper, Type type) {
        if (writer == null) {
            synchronized (this) {
                if (writer == null) {
                    writer = objectMapper
                            .copy() // we need to make the copy in order to avoid adding the Introspector to the default mapper
                            .setAnnotationIntrospector(new SecurityJacksonAnnotationIntrospector()) // needed in order to trigger the inclusion of the filter
                            .writer(
                                    new SimpleFilterProvider().addFilter(SecurityPropertyFilter.FILTER_ID,
                                            new SecurityPropertyFilter())); // register the actual filter
                }
            }
        }
        return writer; // we can use the same writer for all usages of @SecurityCustomSerialization because there is nothing resource method specific to it
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy