Project

General

Profile

Download (1.13 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2017 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.cdm.vaadin.security;
10

    
11
import java.util.Collection;
12

    
13
import org.springframework.security.core.GrantedAuthority;
14

    
15
/**
16
 * @author a.kohlbecker
17
 * @since Apr 25, 2017
18
 *
19
 */
20
public interface AccessRestrictedView extends ReleasableResourcesView {
21

    
22
    /**
23
     * @return
24
     */
25
    public boolean allowAnonymousAccess();
26

    
27
    /**
28
     * The collections of  {@link GrantedAuthority} objects returned by this method are
29
     * evaluated by the {@link AnnotationBasedAccessControlBean} to determine if the
30
     * current authentication is having sufficient grants to access the view.
31
     * <p>
32
     * The collections are alternative sets of GrantedAuthorities to check.
33
     * The GrantedAuthorities of each of the inner collections must instead all be satisfied.
34
     *
35
     * @return
36
     */
37
    public Collection<Collection<GrantedAuthority>> allowedGrantedAuthorities();
38

    
39
}
(1-1/8)