Fix modules Restconf call for mounted devices
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / main / java / org / opendaylight / controller / sal / rest / impl / JsonToCompositeNodeProvider.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.sal.rest.impl;
9
10 import java.io.IOException;
11 import java.io.InputStream;
12 import java.lang.annotation.Annotation;
13 import java.lang.reflect.Type;
14 import javax.ws.rs.Consumes;
15 import javax.ws.rs.WebApplicationException;
16 import javax.ws.rs.core.MediaType;
17 import javax.ws.rs.core.MultivaluedMap;
18 import javax.ws.rs.ext.MessageBodyReader;
19 import javax.ws.rs.ext.Provider;
20 import org.opendaylight.controller.sal.rest.api.Draft02;
21 import org.opendaylight.controller.sal.rest.api.RestconfService;
22 import org.opendaylight.controller.sal.restconf.impl.RestconfDocumentedException;
23 import org.opendaylight.controller.sal.restconf.impl.RestconfError.ErrorTag;
24 import org.opendaylight.controller.sal.restconf.impl.RestconfError.ErrorType;
25 import org.opendaylight.yangtools.yang.data.api.Node;
26 import org.slf4j.Logger;
27 import org.slf4j.LoggerFactory;
28
29 /**
30  * @deprecated class will be removed in Lithium release
31  */
32 @Provider
33 @Consumes({ Draft02.MediaTypes.DATA + RestconfService.JSON, Draft02.MediaTypes.OPERATION + RestconfService.JSON,
34         MediaType.APPLICATION_JSON })
35 public enum JsonToCompositeNodeProvider implements MessageBodyReader<Node<?>> {
36     INSTANCE;
37
38     private final static Logger LOG = LoggerFactory.getLogger(JsonToCompositeNodeProvider.class);
39
40     @Override
41     public boolean isReadable(final Class<?> type, final Type genericType, final Annotation[] annotations,
42             final MediaType mediaType) {
43         return true;
44     }
45
46     @Override
47     public Node<?> readFrom(final Class<Node<?>> type, final Type genericType,
48             final Annotation[] annotations, final MediaType mediaType,
49             final MultivaluedMap<String, String> httpHeaders, final InputStream entityStream) throws IOException,
50             WebApplicationException {
51         try {
52             return JsonToCompositeNodeReader.read(entityStream);
53         } catch (final Exception e) {
54             LOG.debug("Error parsing json input", e);
55
56             throw new RestconfDocumentedException("Error parsing input: " + e.getMessage(), ErrorType.PROTOCOL,
57                     ErrorTag.MALFORMED_MESSAGE);
58         }
59     }
60 }