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

jakarta.json.bind.adapter.JsonbAdapter Maven / Gradle / Ivy

/*
 * Copyright (c) 2016, 2020 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0, which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * This Source Code may also be made available under the following Secondary
 * Licenses when the conditions for such availability set forth in the
 * Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
 * version 2 with the GNU Classpath Exception, which is available at
 * https://www.gnu.org/software/classpath/license.html.
 *
 * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
 */

package jakarta.json.bind.adapter;

/**
 * 

Allows to define custom mapping for given java type. The target type could be string or some * mappable java type.

* *

On serialization "Original" type is converted into "Adapted" type. After that "Adapted" type is serialized to * JSON the standard way.

* *

On deserialization it works the reverse way: JSON data are deserialized into "Adapted" type which is converted * to "Original" type after that.

* *

Adapters are registered using {@link jakarta.json.bind.JsonbConfig#withAdapters(JsonbAdapter[])} method * or using {@link jakarta.json.bind.annotation.JsonbTypeAdapter} annotation on class field.

* * @param The type that JSONB doesn't know how to handle * @param The type that JSONB knows how to handle out of the box * *

Adapter runtime "Original" and "Adapted" generic types are inferred from subclassing information, * which is mandatory for adapter to work.

* *

Sample 1:

*
 * {@code
 *      // Generic information is provided by subclassing.
 *      class BoxToCrateAdapter implements JsonbAdapter, Crate> {...};
 *      jsonbConfig.withAdapters(new BoxToCrateAdapter());
 *
 *      // Generic information is provided by subclassing with anonymous class
 *      jsonbConfig.withAdapters(new JsonbAdapter, Crate> {...});
 * }
 * 
* *

Sample 2:

*
 * {@code
 *      BoxToCrateAdapter implements JsonbAdapter, Integer> {...};
 *
 *      // Bad way: Generic type information is lost due to type erasure
 *      jsonbConfig.withAdapters(new BoxToCrateAdapter());
 *
 *      // Proper way: Anonymous class holds generic type information
 *      jsonbConfig.withAdapters(new BoxToCrateAdapter(){});
 * }
 * 
* * @see jakarta.json.bind.JsonbConfig * @see jakarta.json.bind.annotation.JsonbTypeAdapter * @since JSON Binding 1.0 */ public interface JsonbAdapter { /** * This method is used on serialization only. It contains a conversion logic from type Original to type Adapted. * After conversion Adapted type will be mapped to JSON the standard way. * * @param obj * Object to convert or {@code null}. * @return Converted object which will be serialized to JSON or {@code null}. * @throws Exception if there is an error during the conversion. */ Adapted adaptToJson(Original obj) throws Exception; /** * This method is used on deserialization only. It contains a conversion logic from type Adapted to type Original. * * @param obj * Object to convert or {@code null}. * @return Converted object representing pojo to be set into object graph or {@code null}. * @throws Exception if there is an error during the conversion. */ Original adaptFromJson(Adapted obj) throws Exception; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy