Examples of AuditLogHandler


Examples of co.cask.cdap.security.server.AuditLogHandler

    handlerBinder.addBinding(ExternalAuthenticationServer.HandlerType.GRANT_TOKEN_HANDLER)
                 .to(GrantAccessToken.class);

    bind(AuditLogHandler.class)
      .annotatedWith(Names.named(ExternalAuthenticationServer.NAMED_EXTERNAL_AUTH))
      .toInstance(new AuditLogHandler(EXTERNAL_AUTH_AUDIT_LOG));

    bind(new TypeLiteral<Map<String, Object>>() { })
      .annotatedWith(Names.named("security.handlers"))
      .toProvider(AuthenticationHandlerMapProvider.class)
      .in(Scopes.SINGLETON);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.