org.glassfish.json.jaxrs.JsonValueBodyReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsonp-jaxrs Show documentation
Show all versions of jsonp-jaxrs Show documentation
Jakarta RESTful Web Services MessageBodyReader and MessageBodyWriter to support JsonValue API of Jakarta JSON Processing
The newest version!
/*
* Copyright (c) 2012, 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 org.glassfish.json.jaxrs;
import java.io.IOException;
import java.io.InputStream;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import jakarta.json.Json;
import jakarta.json.JsonReader;
import jakarta.json.JsonReaderFactory;
import jakarta.json.JsonValue;
import jakarta.ws.rs.Consumes;
import jakarta.ws.rs.WebApplicationException;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.MultivaluedMap;
import jakarta.ws.rs.ext.MessageBodyReader;
import jakarta.ws.rs.ext.Provider;
/**
* Jakarta RESTful Web Services MessageBodyReader for JsonValue.
* This allows JsonValue to be a parameter of a resource method.
*
* @author Jitendra Kotamraju
* @author Blaise Doughan
* @author Michal Gajdos
*/
@Provider
@Consumes({"application/json", "text/json", "*/*"})
public class JsonValueBodyReader implements MessageBodyReader {
private final JsonReaderFactory rf = Json.createReaderFactory(null);
private static final String JSON = "json";
private static final String PLUS_JSON = "+json";
@Override
public boolean isReadable(Class> aClass, Type type,
Annotation[] annotations, MediaType mediaType) {
return JsonValue.class.isAssignableFrom(aClass) && supportsMediaType(mediaType);
}
/**
* @return true for all media types of the pattern */json and
* */*+json.
*/
private static boolean supportsMediaType(final MediaType mediaType) {
return mediaType.getSubtype().equals(JSON) || mediaType.getSubtype().endsWith(PLUS_JSON);
}
@Override
public JsonValue readFrom(Class jsonValueClass,
Type type, Annotation[] annotations, MediaType mediaType,
MultivaluedMap stringStringMultivaluedMap,
InputStream inputStream) throws IOException, WebApplicationException {
try (JsonReader reader = rf.createReader(inputStream)) {
return reader.readValue();
}
}
}