BUG 388: corrected media type in /operations resource
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / main / java / org / opendaylight / controller / sal / rest / impl / XmlToCompositeNodeProvider.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
15 import javax.ws.rs.Consumes;
16 import javax.ws.rs.WebApplicationException;
17 import javax.ws.rs.core.MediaType;
18 import javax.ws.rs.core.MultivaluedMap;
19 import javax.ws.rs.core.Response;
20 import javax.ws.rs.ext.MessageBodyReader;
21 import javax.ws.rs.ext.Provider;
22 import javax.xml.stream.XMLStreamException;
23
24 import org.opendaylight.controller.sal.rest.api.Draft02;
25 import org.opendaylight.controller.sal.rest.api.RestconfService;
26 import org.opendaylight.controller.sal.restconf.impl.ResponseException;
27 import org.opendaylight.yangtools.yang.data.api.CompositeNode;
28
29 @Provider
30 @Consumes({ Draft02.MediaTypes.DATA + RestconfService.XML, Draft02.MediaTypes.OPERATION + RestconfService.XML,
31         MediaType.APPLICATION_XML, MediaType.TEXT_XML })
32 public enum XmlToCompositeNodeProvider implements MessageBodyReader<CompositeNode> {
33     INSTANCE;
34
35     @Override
36     public boolean isReadable(Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType) {
37         return true;
38     }
39
40     @Override
41     public CompositeNode readFrom(Class<CompositeNode> type, Type genericType, Annotation[] annotations,
42             MediaType mediaType, MultivaluedMap<String, String> httpHeaders, InputStream entityStream)
43             throws IOException, WebApplicationException {
44         XmlReader xmlReader = new XmlReader();
45         try {
46             return xmlReader.read(entityStream);
47         } catch (XMLStreamException | UnsupportedFormatException e) {
48             throw new ResponseException(Response.Status.BAD_REQUEST, e.getMessage());
49         }
50     }
51
52 }