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

File DefaultResourceReferenceSerializer.java

 

Coverage histogram

../../../../img/srcFileCovDistChart9.png
38% of files have more coverage

Code metrics

0
6
1
1
77
41
2
0.33
6
1
2

Classes

Class Line # Actions
DefaultResourceReferenceSerializer 48 6 0% 2 1
0.8571428785.7%
 

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.url.internal;
21   
22    import java.lang.reflect.ParameterizedType;
23   
24    import javax.inject.Inject;
25    import javax.inject.Named;
26    import javax.inject.Singleton;
27   
28    import org.xwiki.component.annotation.Component;
29    import org.xwiki.component.manager.ComponentLookupException;
30    import org.xwiki.component.manager.ComponentManager;
31    import org.xwiki.component.util.DefaultParameterizedType;
32    import org.xwiki.resource.ResourceReference;
33    import org.xwiki.resource.ResourceReferenceSerializer;
34    import org.xwiki.resource.SerializeResourceReferenceException;
35    import org.xwiki.resource.UnsupportedResourceReferenceException;
36    import org.xwiki.url.ExtendedURL;
37    import org.xwiki.url.URLContextManager;
38   
39    /**
40    * Delegates the work to the Resource Reference Serializer specified in the XWiki Configuration
41    * (see {@link org.xwiki.url.URLConfiguration#getURLFormatId()}.
42    *
43    * @version $Id: 8044105184eff2c07585021d77ba1d082a224943 $
44    * @since 6.1M2
45    */
46    @Component
47    @Singleton
 
48    public class DefaultResourceReferenceSerializer implements ResourceReferenceSerializer<ResourceReference, ExtendedURL>
49    {
50    @Inject
51    private URLContextManager urlContextManager;
52   
53    /**
54    * Used to lookup the correct {@link org.xwiki.resource.ResourceReferenceSerializer} component.
55    */
56    @Inject
57    @Named("context")
58    private ComponentManager componentManager;
59   
 
60  25715 toggle @Override
61    public ExtendedURL serialize(ResourceReference resource)
62    throws SerializeResourceReferenceException, UnsupportedResourceReferenceException
63    {
64  25715 ResourceReferenceSerializer<ResourceReference, ExtendedURL> serializer;
65  25715 ParameterizedType type = new DefaultParameterizedType(null, ResourceReferenceSerializer.class,
66    ResourceReference.class, ExtendedURL.class);
67  25713 try {
68  25713 serializer = this.componentManager.getInstance(type, this.urlContextManager.getURLFormatId());
69    } catch (ComponentLookupException e) {
70  0 throw new UnsupportedResourceReferenceException(
71    String.format("Invalid URL format id [%s]. Cannot serialize Resource Reference [%s].",
72    this.urlContextManager.getURLFormatId(), resource), e);
73    }
74   
75  25715 return serializer.serialize(resource);
76    }
77    }