Package org.apache.druid.server.security
Class AllowAllAuthorizer
- java.lang.Object
-
- org.apache.druid.server.security.AllowAllAuthorizer
-
- All Implemented Interfaces:
Authorizer
public class AllowAllAuthorizer extends Object implements Authorizer
-
-
Constructor Summary
Constructors Constructor Description AllowAllAuthorizer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Accessauthorize(AuthenticationResult authenticationResult, Resource resource, Action action)Check if the entity represented byidentityis authorized to performactiononresource.
-
-
-
Method Detail
-
authorize
public Access authorize(AuthenticationResult authenticationResult, Resource resource, Action action)
Description copied from interface:AuthorizerCheck if the entity represented byidentityis authorized to performactiononresource.- Specified by:
authorizein interfaceAuthorizer- Parameters:
authenticationResult- The authentication result of the requestresource- The resource to be accessedaction- The action to perform on the resource- Returns:
- An Access object representing the result of the authorization check. Must not be null.
-
-