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

org.apache.juneau.rest.converters.Traversable Maven / Gradle / Ivy

There is a newer version: 9.0.1
Show newest version
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file        *
// * to you 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                                                              *
// *                                                                                                                         *
// *  http://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.apache.juneau.rest.converters;

import javax.servlet.http.*;

import org.apache.juneau.*;
import org.apache.juneau.rest.*;
import org.apache.juneau.transform.*;
import org.apache.juneau.utils.*;

/**
 * Converter for enabling of {@link PojoRest} support on response objects returned by a @RestMethod method.
 *
 * 

* When enabled, objects in a POJO tree returned by the REST method can be addressed through additional URL path * information. * *

* // Resource method on resource "http://localhost:8080/sample/addressBook" * @RestMethod(name=GET, converters=Traversable.class) * public void doGet(RestRequest req, RestResponse res) { * return new AddressBook(); * } * * // Sample usage * public static void main(String[] args) { * // Get the zip code of the 2nd address of the first person in the address book. * RestCall r = new RestClient().doGet("http://localhost:8080/sample/addressBook/0/addresses/1/zip"); * int zip = r.getResponse(Integer.class); * } *

* *

* See {@link PojoRest} for additional information on addressing elements in a POJO tree using URL notation. */ public final class Traversable implements RestConverter { @Override /* RestConverter */ @SuppressWarnings({"rawtypes", "unchecked"}) public Object convert(RestRequest req, Object o, ClassMeta cm) throws RestException { if (o == null) return null; if (req.getPathMatch().getRemainder() != null) { try { BeanSession bs = req.getBeanSession(); PojoSwap swap = cm.getPojoSwap(bs); if (swap != null) o = swap.swap(bs, o); PojoRest p = new PojoRest(o, req.getBody().getReaderParser()); o = p.get(req.getPathMatch().getRemainder()); } catch (PojoRestException e) { throw new RestException(e.getStatus(), e); } catch (Exception e) { throw new RestException(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, e); } } return o; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy