当前位置: 首页>>代码示例>>Java>>正文


Java Authorizer类代码示例

本文整理汇总了Java中io.dropwizard.auth.Authorizer的典型用法代码示例。如果您正苦于以下问题:Java Authorizer类的具体用法?Java Authorizer怎么用?Java Authorizer使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


Authorizer类属于io.dropwizard.auth包,在下文中一共展示了Authorizer类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: registerAuthenticator

import io.dropwizard.auth.Authorizer; //导入依赖的package包/类
/**
 *
 * @param environment The Dropwizard environment
 * @param authorizer A specific authorizer to use instead of the default PermitAllAuthorizer.  See
 * http://www.dropwizard.io/0.9.1/docs/manual/auth.html for more details
 */
public void registerAuthenticator(Environment environment, Authorizer<Peer> authorizer) {
    Preconditions.checkNotNull(environment, "Illegal call to registerAuthenticator with a null Environment object");
    Authenticator<BasicCredentials, Peer> authenticator;
    if (this.cachePolicy != null) {
        authenticator = createCachingAuthenticator(environment.metrics());
    }
    else {
        authenticator = createAuthenticator();
    }
    environment.jersey().register(new AuthDynamicFeature(
        new BasicCredentialAuthFilter.Builder<Peer>()
            .setAuthenticator(authenticator)
            .setAuthorizer(authorizer)
            .setRealm(this.realm)
            .buildAuthFilter()));
    environment.jersey().register(RolesAllowedDynamicFeature.class);
    environment.jersey().register(new AuthValueFactoryProvider.Binder<>(Peer.class));
}
 
开发者ID:washingtonpost,项目名称:dropwizard-peer-authenticator,代码行数:25,代码来源:AllowedPeerConfiguration.java

示例2: ChainedAuthTestResourceConfig

import io.dropwizard.auth.Authorizer; //导入依赖的package包/类
@SuppressWarnings("unchecked")
public ChainedAuthTestResourceConfig() {
    super(true, new MetricRegistry());

    final Authorizer<Principal> authorizer = AuthUtil.getTestAuthorizer(ADMIN_USER, ADMIN_ROLE);
    final AuthFilter<BasicCredentials, Principal> basicAuthFilter = new BasicCredentialAuthFilter.Builder<>()
            .setAuthenticator(AuthUtil.getBasicAuthenticator(ImmutableList.of(ADMIN_USER, ORDINARY_USER)))
            .setAuthorizer(authorizer)
            .buildAuthFilter();

    final AuthFilter<String, Principal> oAuthFilter = new OAuthCredentialAuthFilter.Builder<>()
            .setAuthenticator(AuthUtil.getSingleUserOAuthAuthenticator(BEARER_USER, ADMIN_USER))
            .setPrefix(BEARER_PREFIX)
            .setAuthorizer(authorizer)
            .buildAuthFilter();

    register(new AuthValueFactoryProvider.Binder(Principal.class));
    register(new AuthDynamicFeature(new ChainedAuthFilter<>(buildHandlerList(basicAuthFilter, oAuthFilter))));
    register(RolesAllowedDynamicFeature.class);
    register(AuthResource.class);
}
 
开发者ID:dropwizard,项目名称:dropwizard-java8,代码行数:22,代码来源:ChainedAuthProviderTest.java

示例3: configure

import io.dropwizard.auth.Authorizer; //导入依赖的package包/类
@Override protected void configure() {

    bind(AuthConfiguration.class).toInstance(authConfiguration);

    bind(ApiKeyCredentials.class).asEagerSingleton();

    bind(new TypeLiteral<Authenticator<String, AuthPrincipal>>() {
    })
        .annotatedWith(Names.named("oauthAppAuthenticator"))
        .to(TokenOAuthAuthenticator.class);

    bind(new TypeLiteral<Authorizer<AuthPrincipal>>() {
    })
        .annotatedWith(Names.named("oauthAppAuthorizer"))
        .to(TokenAuthorizer.class);

    bind(new TypeLiteral<Authenticator<BasicCredentials, AuthPrincipal>>() {
    })
        .annotatedWith(Names.named("basicAppAuthenticator"))
        .to(BasicAuthenticator.class);

    List<String> multipleGroupAccessList = Lists.newArrayList();

    multipleGroupAccessList.addAll(
        Splitter.on(",").splitToList(authConfiguration.multipleGroupAccessList));

    bind(new TypeLiteral<List<String>>() {
    }).annotatedWith(Names.named("multipleGroupAccessList")).toInstance(multipleGroupAccessList);

    bind(AccessControlSupport.class).asEagerSingleton();

    bind(UnauthorizedHandler.class).to(DefaultUnauthorizedHandler.class);

    OkHttpClient.Builder builder = new OkHttpClient.Builder()
        .connectTimeout(authConfiguration.remoteOAuthServer.connectTimeout, TimeUnit.MILLISECONDS)
        .readTimeout(authConfiguration.remoteOAuthServer.connectTimeout, TimeUnit.MILLISECONDS);

    OkHttpClient client = builder.build();

    bind(OkHttpClient.class)
        .annotatedWith(Names.named("OAuthServiceClient"))
        .toInstance(client);

    logger.info("op=configure_oauth,remote_oauth_lookup_url={}",
        authConfiguration.remoteOAuthServer.tokenLookupURI);

    bind(URI.class)
        .annotatedWith(Names.named("OAuthServiceTokenLookupUri"))
        .toInstance(authConfiguration.remoteOAuthServer.tokenLookupURI);
  }
 
开发者ID:dehora,项目名称:outland,代码行数:51,代码来源:AuthModule.java

示例4: setAuthorizer

import io.dropwizard.auth.Authorizer; //导入依赖的package包/类
public OAuth2AuthFilter.Builder<C, P, T, A> setAuthorizer(Authorizer<P> authorizer) {
    this.authorizer = authorizer;
    return this;
}
 
开发者ID:edeoliveira,项目名称:oauth2-dropwizard,代码行数:5,代码来源:OAuth2AuthFilter.java

示例5: getTestAuthorizer

import io.dropwizard.auth.Authorizer; //导入依赖的package包/类
public static Authorizer<Principal> getTestAuthorizer(final String validUser,
                                                      final String validRole) {
    return (principal, role) -> principal != null
            && validUser.equals(principal.getName())
            && validRole.equals(role);
}
 
开发者ID:dropwizard,项目名称:dropwizard-java8,代码行数:7,代码来源:AuthUtil.java

示例6: createAuthorizer

import io.dropwizard.auth.Authorizer; //导入依赖的package包/类
/**
 * Return the Authorizer instance that will be used to check the @RolesAllowed annotations.
 * Override this method to provide an instance of a different instance of another class.
 *
 * @return the class.
 */
protected Authorizer createAuthorizer() {
    return new UserAuthorizer();
}
 
开发者ID:ahus1,项目名称:keycloak-dropwizard-integration,代码行数:10,代码来源:KeycloakBundle.java

示例7: setAuthorizer

import io.dropwizard.auth.Authorizer; //导入依赖的package包/类
/**
 * Sets the given authorizer
 *
 * @param authorizer an {@link Authorizer}
 * @return the current builder
 */
public AuthFilterBuilder<C, P, T> setAuthorizer(Authorizer<P> authorizer) {
    this.authorizer = authorizer;
    return this;
}
 
开发者ID:dropwizard,项目名称:dropwizard-java8,代码行数:11,代码来源:AuthFilter.java


注:本文中的io.dropwizard.auth.Authorizer类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。