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

File AbstractSecurityAccessEntry.java

 

Coverage histogram

../../../../../img/srcFileCovDistChart6.png
69% of files have more coverage

Code metrics

4
7
2
1
59
29
4
0.57
3.5
2
2

Classes

Class Line # Actions
AbstractSecurityAccessEntry 32 7 0% 4 6
0.5384615753.8%
 

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.security.authorization.internal;
21   
22    import org.apache.commons.lang3.builder.HashCodeBuilder;
23    import org.xwiki.security.authorization.SecurityAccessEntry;
24   
25    /**
26    * This Abstract base class should be used for all SecurityAccessEntry implementing class to ensure
27    * proper implementation of equals and hashCode.
28    *
29    * @version $Id: 0977d871cbc625d32acef287a0e08b475d40c254 $
30    * @since 4.0M2
31    */
 
32    public abstract class AbstractSecurityAccessEntry implements SecurityAccessEntry
33    {
 
34  204 toggle @Override
35    public boolean equals(Object object)
36    {
37  204 if (object == this) {
38  0 return true;
39    }
40  204 if (!(object instanceof SecurityAccessEntry)) {
41  0 return false;
42    }
43  204 SecurityAccessEntry other = (SecurityAccessEntry) object;
44   
45  204 return this.getUserReference().equals(other.getUserReference())
46    && this.getReference().equals(other.getReference())
47    && this.getAccess().equals(other.getAccess());
48    }
49   
 
50  0 toggle @Override
51    public int hashCode()
52    {
53  0 return new HashCodeBuilder()
54    .append(this.getUserReference())
55    .append(this.getReference())
56    .append(this.getAccess())
57    .toHashCode();
58    }
59    }