org.glassfish.jersey.examples.jackson1.ExceptionMappingTestResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-jackson1 Show documentation
Show all versions of json-jackson1 Show documentation
Jersey JSON with Jackson 1.x example.
/*
* Copyright (c) 2014, 2019 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.glassfish.jersey.examples.jackson1;
import javax.ws.rs.Consumes;
import javax.ws.rs.PUT;
import javax.ws.rs.Path;
import javax.ws.rs.core.MediaType;
/**
* Testing bean that accepts JSON for the PUT method.
*
* @author Adam Lindenthal
*/
@Path("parseExceptionTest")
public class ExceptionMappingTestResource {
@Consumes(MediaType.APPLICATION_JSON)
@PUT
public DummyBean getAccount(final DummyBean bean) {
return bean;
}
}