All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.dropwizard.auth.Authorizer Maven / Gradle / Ivy

There is a newer version: 5.0.0-alpha.4
Show newest version
package io.dropwizard.auth;

import org.checkerframework.checker.nullness.qual.Nullable;

import javax.ws.rs.container.ContainerRequestContext;
import java.security.Principal;

/**
 * An interface for classes which authorize principal objects.
 *
 * @param 

the type of principals */ public interface Authorizer

{ /** * Decides if access is granted for the given principal in the given role. * * @param principal a {@link Principal} object, representing a user * @param role a user role * @param requestContext a request context. * @return {@code true}, if the access is granted, {@code false otherwise} * @since 2.0 */ boolean authorize(P principal, String role, @Nullable ContainerRequestContext requestContext); /** * Returns an {@link AuthorizationContext} object, to be used in {@link CachingAuthorizer} as cache key. * @param principal a {@link Principal} object, representing a user * @param role a user role * @param requestContext a request context. * @return {@link AuthorizationContext} object, to be used in {@link CachingAuthorizer}. * @since 2.1 */ default AuthorizationContext

getAuthorizationContext(P principal, String role, @Nullable ContainerRequestContext requestContext) { return new DefaultAuthorizationContext<>(principal, role, requestContext); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy