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

File TextPlainTagsReader.java

 

Coverage histogram

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

Code metrics

0
10
2
1
77
46
2
0.2
5
2
1

Classes

Class Line # Actions
TextPlainTagsReader 49 10 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.tags;
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.Tag;
39    import org.xwiki.rest.model.jaxb.Tags;
40   
41    /**
42    * @version $Id: 2c182e38836832992a30565c1f5addaec4057ffa $
43    */
44    @Component
45    @Named("org.xwiki.rest.internal.representations.tags.TextPlainTagsReader")
46    @Provider
47    @Consumes(MediaType.TEXT_PLAIN)
48    @Singleton
 
49    public class TextPlainTagsReader extends TextPlainReader<Tags>
50    {
 
51  24 toggle @Override
52    public boolean isReadable(Class< ? > type, Type genericType, Annotation[] annotations, MediaType mediaType)
53    {
54  24 return Tags.class.isAssignableFrom(type);
55    }
56   
 
57  1 toggle @Override
58    public Tags readFrom(Class<Tags> type, Type genericType, Annotation[] annotations, MediaType mediaType,
59    MultivaluedMap<String, String> httpHeaders, InputStream entityStream) throws IOException,
60    WebApplicationException
61    {
62  1 ObjectFactory objectFactory = new ObjectFactory();
63  1 Tags tags = objectFactory.createTags();
64   
65  1 String text = getEntityAsString(entityStream);
66  1 String[] tagNames = text.split(" |,|\\||\\r?\\n");
67   
68  1 for (String tagName : tagNames) {
69  1 Tag tag = objectFactory.createTag();
70  1 tag.setName(tagName);
71  1 tags.getTags().add(tag);
72    }
73   
74  1 return tags;
75    }
76   
77    }