1. Project Clover database Tue Dec 20 2016 21:24:09 CET
  2. Package org.xwiki.rest.internal.representations.pages

File TextPlainPageReader.java

 

Coverage histogram

../../../../../../img/srcFileCovDistChart10.png
0% of files have more coverage

Code metrics

0
6
2
1
71
40
2
0.33
3
2
1

Classes

Class Line # Actions
TextPlainPageReader 48 6 0% 2 0
1.0100%
 

Contributing tests

No tests hitting this source file were found.

Source view

1    /*
2    * See the NOTICE file distributed with this work for additional
3    * information regarding copyright ownership.
4    *
5    * This is free software; you can redistribute it and/or modify it
6    * under the terms of the GNU Lesser General Public License as
7    * published by the Free Software Foundation; either version 2.1 of
8    * the License, or (at your option) any later version.
9    *
10    * This software is distributed in the hope that it will be useful,
11    * but WITHOUT ANY WARRANTY; without even the implied warranty of
12    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13    * Lesser General Public License for more details.
14    *
15    * You should have received a copy of the GNU Lesser General Public
16    * License along with this software; if not, write to the Free
17    * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18    * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
19    */
20    package org.xwiki.rest.internal.representations.pages;
21   
22    import java.io.IOException;
23    import java.io.InputStream;
24    import java.lang.annotation.Annotation;
25    import java.lang.reflect.Type;
26   
27    import javax.inject.Named;
28    import javax.inject.Singleton;
29    import javax.ws.rs.Consumes;
30    import javax.ws.rs.WebApplicationException;
31    import javax.ws.rs.core.MediaType;
32    import javax.ws.rs.core.MultivaluedMap;
33    import javax.ws.rs.ext.Provider;
34   
35    import org.xwiki.component.annotation.Component;
36    import org.xwiki.rest.internal.representations.TextPlainReader;
37    import org.xwiki.rest.model.jaxb.ObjectFactory;
38    import org.xwiki.rest.model.jaxb.Page;
39   
40    /**
41    * @version $Id: 9f8b6ae1faa439fde66d641a8e68e5688ba65285 $
42    */
43    @Component
44    @Named("org.xwiki.rest.internal.representations.pages.TextPlainPageReader")
45    @Provider
46    @Consumes(MediaType.TEXT_PLAIN)
47    @Singleton
 
48    public class TextPlainPageReader extends TextPlainReader<Page>
49    {
 
50  22 toggle @Override
51    public boolean isReadable(Class< ? > type, Type genericType, Annotation[] annotations, MediaType mediaType)
52    {
53  22 return Page.class.isAssignableFrom(type);
54    }
55   
 
56  1 toggle @Override
57    public Page readFrom(Class<Page> type, Type genericType, Annotation[] annotations, MediaType mediaType,
58    MultivaluedMap<String, String> httpHeaders, InputStream entityStream) throws IOException,
59    WebApplicationException
60    {
61  1 ObjectFactory objectFactory = new ObjectFactory();
62  1 Page page = objectFactory.createPage();
63   
64  1 String content = getEntityAsString(entityStream);
65   
66  1 page.setContent(content);
67   
68  1 return page;
69    }
70   
71    }