org.springframework.amqp.support.converter.Jackson2JavaTypeMapper.java Source code

Java tutorial

Introduction

Here is the source code for org.springframework.amqp.support.converter.Jackson2JavaTypeMapper.java

Source

/*
 * Copyright 2002-2019 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.amqp.support.converter;

import org.springframework.amqp.core.MessageProperties;
import org.springframework.lang.Nullable;

import com.fasterxml.jackson.databind.JavaType;

/**
 * Strategy for setting metadata on messages such that one can create the class that needs
 * to be instantiated when receiving a message.
 *
 * @author Mark Pollack
 * @author James Carr
 * @author Sam Nelson
 * @author Andreas Asplund
 * @author Gary Russell
 */
public interface Jackson2JavaTypeMapper extends ClassMapper {

    /**
     * The precedence for type conversion - inferred from the method parameter or message
     * headers. Only applies if both exist.
     * @since 1.6
     */
    enum TypePrecedence {
        INFERRED, TYPE_ID
    }

    /**
     * Set the message properties according to the type.
     * @param javaType the type.
     * @param properties the properties.
     */
    void fromJavaType(JavaType javaType, MessageProperties properties);

    /**
     * Determine the type from the message properties.
     * @param properties the properties.
     * @return the type.
     */
    JavaType toJavaType(MessageProperties properties);

    /**
     * Get the type precedence.
     * @return the precedence.
     * @since 1.6
     */
    TypePrecedence getTypePrecedence();

    /**
     * Add trusted packages.
     * @param packages the packages.
     * @since 2.1
     */
    default void addTrustedPackages(String... packages) {
        // no op
    }

    /**
     * Return the inferred type, if the type precedence is inferred and the
     * header is present.
     * @param properties the message properties.
     * @return the type.
     * @since 2.2
     */
    @Nullable
    JavaType getInferredType(MessageProperties properties);

}