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

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

There is a newer version: 1.3.7
Show newest version
package io.dropwizard.auth;

import java.security.Principal;

/**
 * An {@link Authorizer} that grants access for any principal in any role.
 *
 * @param 

the type of the principal */ public class PermitAllAuthorizer

implements Authorizer

{ @Override public boolean authorize(P principal, String role) { return true; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy