Uses of Interface
org.pac4j.core.authorization.authorizer.Authorizer
Packages that use Authorizer
Package
Description
-
Uses of Authorizer in org.pac4j.core.authorization.authorizer
Classes in org.pac4j.core.authorization.authorizer that implement AuthorizerModifier and TypeClassDescriptionclassCheck the authentication of the user.classAn authorizer to require all the elements.classAn authorizer to require any of the elements.classAn authorizer to require elements.classThe conjunction of authorizers.classChecks the HTTP method.classChecks the profile type.classAuthorizer that checks CSRF tokens.classThe user must be anonymous.classThe user must be authenticated.classThe user must be fully authenticated (not remembered).classThe user must be authenticated and remembered.classThe disjunction of authorizers.classAuthorizer which is valid if one of the profiles is authorized or all the profiles are authorized.classChecks an access if the user profile has all the permissions.classChecks an access if the user profile has all the roles.classThis isRequireAnyAttributeAuthorizerwhich checks profile attributes for the specified element, and optionally may pattern-check the configured value.classChecks an access if the user profile has any of the permissions.classChecks an access if the user profile has any of the roles.Methods in org.pac4j.core.authorization.authorizer that return AuthorizerMethods in org.pac4j.core.authorization.authorizer with parameters of type AuthorizerModifier and TypeMethodDescriptionstatic AuthorizerAndAuthorizer.and(Authorizer... authorizers) static OrAuthorizerOrAuthorizer.or(Authorizer... authorizers) Constructor parameters in org.pac4j.core.authorization.authorizer with type arguments of type AuthorizerModifierConstructorDescriptionAndAuthorizer(List<Authorizer> authorizers) OrAuthorizer(List<Authorizer> authorizers) -
Uses of Authorizer in org.pac4j.core.authorization.checker
Methods in org.pac4j.core.authorization.checker that return AuthorizerModifier and TypeMethodDescriptionprotected AuthorizerDefaultAuthorizationChecker.retrieveAuthorizer(String authorizerName, Map<String, Authorizer> authorizersMap) Methods in org.pac4j.core.authorization.checker that return types with arguments of type AuthorizerModifier and TypeMethodDescriptionprotected List<Authorizer>DefaultAuthorizationChecker.computeAuthorizers(WebContext context, List<UserProfile> profiles, String authorizersValue, Map<String, Authorizer> authorizersMap, List<Client> clients) protected List<Authorizer>DefaultAuthorizationChecker.computeAuthorizersFromNames(String authorizerNames, Map<String, Authorizer> authorizersMap) protected List<Authorizer>DefaultAuthorizationChecker.computeDefaultAuthorizers(WebContext context, List<UserProfile> profiles, List<Client> clients, Map<String, Authorizer> authorizersMap) Method parameters in org.pac4j.core.authorization.checker with type arguments of type AuthorizerModifier and TypeMethodDescriptionprotected List<Authorizer>DefaultAuthorizationChecker.computeAuthorizers(WebContext context, List<UserProfile> profiles, String authorizersValue, Map<String, Authorizer> authorizersMap, List<Client> clients) protected List<Authorizer>DefaultAuthorizationChecker.computeAuthorizersFromNames(String authorizerNames, Map<String, Authorizer> authorizersMap) protected List<Authorizer>DefaultAuthorizationChecker.computeDefaultAuthorizers(WebContext context, List<UserProfile> profiles, List<Client> clients, Map<String, Authorizer> authorizersMap) booleanAuthorizationChecker.isAuthorized(WebContext context, SessionStore sessionStore, List<UserProfile> profiles, String authorizerNames, Map<String, Authorizer> authorizersMap, List<Client> clients) Check whether the user is authorized.booleanDefaultAuthorizationChecker.isAuthorized(WebContext context, SessionStore sessionStore, List<UserProfile> profiles, String authorizersValue, Map<String, Authorizer> authorizersMap, List<Client> clients) protected AuthorizerDefaultAuthorizationChecker.retrieveAuthorizer(String authorizerName, Map<String, Authorizer> authorizersMap) -
Uses of Authorizer in org.pac4j.core.config
Fields in org.pac4j.core.config with type parameters of type AuthorizerMethods in org.pac4j.core.config that return types with arguments of type AuthorizerMethods in org.pac4j.core.config with parameters of type AuthorizerModifier and TypeMethodDescriptionvoidConfig.addAuthorizer(String name, Authorizer authorizer) voidConfig.setAuthorizer(Authorizer authorizer) Method parameters in org.pac4j.core.config with type arguments of type AuthorizerConstructor parameters in org.pac4j.core.config with type arguments of type AuthorizerModifierConstructorDescriptionConfig(Map<String, Authorizer> authorizers) Config(Map<String, Authorizer> authorizers, Client... clients) Config(Client client, Map<String, Authorizer> authorizers) Config(Clients clients, Map<String, Authorizer> authorizers)