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

File AccessDeniedException.java

 

Coverage histogram

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

Code metrics

0
4
4
1
76
24
4
1
1
4
1

Classes

Class Line # Actions
AccessDeniedException 31 4 0% 4 0
1.0100%
 

Contributing tests

This file is covered by 38 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.security.authorization;
21   
22    import org.xwiki.model.reference.EntityReference;
23    import org.xwiki.model.reference.DocumentReference;
24   
25    /**
26    * Exception raised by the AuthorizationManager when denying access.
27    *
28    * @version $Id: e5739761103b38c2ff83f7c769a949b18ed036a2 $
29    * @since 4.0M2
30    */
 
31    public class AccessDeniedException extends AuthorizationException
32    {
33    /** Serialization identifier. */
34    private static final long serialVersionUID = 1L;
35   
36    /**
37    * @param userReference The user, for which the query was attempted.
38    * @param entityReference The entity, on which the query was attempted.
39    */
 
40  5 toggle public AccessDeniedException(DocumentReference userReference, EntityReference entityReference)
41    {
42  5 this(userReference, entityReference, null);
43    }
44   
45    /**
46    * @param right The right currently being checked.
47    * @param userReference The user, for which the query was attempted.
48    * @param entityReference The entity, on which the query was attempted.
49    */
 
50  35 toggle public AccessDeniedException(Right right, DocumentReference userReference, EntityReference entityReference)
51    {
52  35 this(right, userReference, entityReference, null);
53    }
54   
55    /**
56    * @param userReference The user, for which the query was attempted.
57    * @param entityReference The entity, on which the query was attempted.
58    * @param t a Throwable providing details about the underlying cause.
59    */
 
60  5 toggle public AccessDeniedException(DocumentReference userReference, EntityReference entityReference, Throwable t)
61    {
62  5 this(null, userReference, entityReference, t);
63    }
64   
65    /**
66    * @param right The right currently being checked.
67    * @param userReference The user, for which the query was attempted.
68    * @param entityReference The entity, on which the query was attempted.
69    * @param t a Throwable providing details about the underlying cause.
70    */
 
71  40 toggle public AccessDeniedException(Right right, DocumentReference userReference, EntityReference entityReference,
72    Throwable t)
73    {
74  40 super(right, userReference, entityReference, "Access denied", t);
75    }
76    }