本文整理汇总了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));
}
示例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);
}
示例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);
}
示例4: setAuthorizer
import io.dropwizard.auth.Authorizer; //导入依赖的package包/类
public OAuth2AuthFilter.Builder<C, P, T, A> setAuthorizer(Authorizer<P> authorizer) {
this.authorizer = authorizer;
return this;
}
示例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);
}
示例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();
}
示例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;
}