1. Project Clover database Tue Dec 20 2016 21:24:09 CET
  2. Package org.xwiki.platform.wiki.creationjob.internal.steps

File CreateWikiStep.java

 

Coverage histogram

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

Code metrics

0
4
2
1
63
33
3
0.75
2
2
1.5

Classes

Class Line # Actions
CreateWikiStep 43 4 0% 3 0
1.0100%
 

Contributing tests

This file is covered by 3 tests. .

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.platform.wiki.creationjob.internal.steps;
21   
22    import javax.inject.Inject;
23    import javax.inject.Named;
24   
25    import org.xwiki.component.annotation.Component;
26    import org.xwiki.component.annotation.InstantiationStrategy;
27    import org.xwiki.component.descriptor.ComponentInstantiationStrategy;
28    import org.xwiki.platform.wiki.creationjob.WikiCreationRequest;
29    import org.xwiki.platform.wiki.creationjob.WikiCreationStep;
30    import org.xwiki.platform.wiki.creationjob.WikiCreationException;
31    import org.xwiki.wiki.manager.WikiManager;
32    import org.xwiki.wiki.manager.WikiManagerException;
33   
34    /**
35    * Step that creates a wiki.
36    *
37    * @version $Id: 6f7c9e05eeb6a79d7302f961ccb4f4d411fcce7b $
38    * @since 7.0M2
39    */
40    @Component
41    @InstantiationStrategy(ComponentInstantiationStrategy.PER_LOOKUP)
42    @Named("create")
 
43    public class CreateWikiStep implements WikiCreationStep
44    {
45    @Inject
46    private WikiManager wikiManager;
47   
 
48  6 toggle @Override
49    public void execute(WikiCreationRequest request) throws WikiCreationException
50    {
51  6 try {
52  6 wikiManager.create(request.getWikiId(), request.getAlias(), request.isFailOnExist());
53    } catch (WikiManagerException e) {
54  1 throw new WikiCreationException(String.format("Failed to create the wiki [%s].", request.getWikiId()), e);
55    }
56    }
57   
 
58  7 toggle @Override
59    public int getOrder()
60    {
61  7 return 1000;
62    }
63    }