Class VaadinSecurity

    • Constructor Detail

      • VaadinSecurity

        public VaadinSecurity()
    • Method Detail

      • check

        public static VaadinSecurityExpressionOperations check()
        Returns operations that allow to check for certain access of the current Authentication. The available operations are the same as in the expressions.

        See getAuthentication() for a description under which circumstances the Authentication can be determined automatically.

        Returns:
        the security operations
      • check

        public static VaadinSecurityExpressionOperations check​(org.springframework.security.core.Authentication authentication)
        Check for access by querying the methods of the returned VaadinSecurityExpressionOperations. The available operations are the same as in the expressions.
        Parameters:
        authentication - the authentication to be tested
        Returns:
        the security operations
      • hasAccess

        public static boolean hasAccess​(String securityExpression)
        Returns whether the current Authentication has access based on the given security expression.

        See getAuthentication() for a description under which circumstances the Authentication can be determined automatically.

        Parameters:
        securityExpression - the Spring Security expression
        Returns:
        whether the current security context has access
        See Also:
        SecurityContextHolder.getContext()
      • hasAccess

        public static boolean hasAccess​(org.springframework.security.core.Authentication authentication,
                                        String securityExpression)
        Returns whether the given Authentication has access based on the specified Spring security expression.
        Parameters:
        authentication - the authentication to be tested
        securityExpression - the Spring Security expression
        Returns:
        whether the current security context has access
      • hasAccessTo

        public static boolean hasAccessTo​(Class<? extends com.vaadin.flow.component.Component> navigationTarget)
        Returns whether the current Authentication has access to the given navigation target.
        Parameters:
        navigationTarget - the navigation targets to be checked for access
        Returns:
        whether the current security context has access
        See Also:
        SecurityContextHolder.getContext()
      • hasAccessTo

        public static boolean hasAccessTo​(String routePath)
        Returns whether the current Authentication has access to the given route path.
        Parameters:
        routePath - the route path to be checked for access
        Returns:
        whether the current security context has access
        See Also:
        SecurityContextHolder.getContext()
      • getAuthentication

        public static org.springframework.security.core.Authentication getAuthentication()
        Returns the current Authentication if available. The authentication is available in all request threads (Vaadin request or otherwise) and in all threads that are currently accessing the UI or session.
        Returns:
        the current Authentication if available, null otherwise