spring security DefaultJaasAuthenticationProvider 源码
spring security DefaultJaasAuthenticationProvider 代码
文件路径:/core/src/main/java/org/springframework/security/authentication/jaas/DefaultJaasAuthenticationProvider.java
/*
* Copyright 2010-2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.security.authentication.jaas;
import javax.security.auth.callback.CallbackHandler;
import javax.security.auth.login.Configuration;
import javax.security.auth.login.LoginContext;
import javax.security.auth.login.LoginException;
import org.springframework.security.authentication.jaas.memory.InMemoryConfiguration;
import org.springframework.util.Assert;
/**
* <p>
* Creates a LoginContext using the Configuration provided to it. This allows the
* configuration to be injected regardless of the value of
* {@link Configuration#getConfiguration()}.
* </p>
* <p>
* While not bound to any particular Configuration implementation, an in memory version of
* a JAAS configuration can be represented using {@link InMemoryConfiguration}.
* </p>
* <p>
* The following JAAS configuration:
* </p>
*
* <pre>
* SPRINGSECURITY {
* sample.SampleLoginModule required;
* };
* </pre>
*
* <p>
* Can be represented as follows:
* </p>
*
* <pre>
* <bean id="jaasAuthProvider" class="org.springframework.security.authentication.jaas.DefaultJaasAuthenticationProvider">
* <property name="configuration">
* <bean class="org.springframework.security.authentication.jaas.memory.InMemoryConfiguration">
* <constructor-arg>
* <map>
* <!-- SPRINGSECURITY is the default loginContextName for AbstractJaasAuthenticationProvider-->
* <entry key="SPRINGSECURITY">
* <array>
* <bean class="javax.security.auth.login.AppConfigurationEntry">
* <constructor-arg value="sample.SampleLoginModule" />
* <constructor-arg>
* <util:constant static-field="javax.security.auth.login.AppConfigurationEntry$LoginModuleControlFlag.REQUIRED" />
* </constructor-arg>
* <constructor-arg>
* <map></map>
* </constructor-arg>
* </bean>
* </array>
* </entry>
* </map>
* </constructor-arg>
* </bean>
* </property>
* <property name="authorityGranters">
* <list>
* <!-- You will need to write your own implementation of AuthorityGranter -->
* <bean class="org.springframework.security.authentication.jaas.TestAuthorityGranter"/>
* </list>
* </property>
* </bean>
* </pre>
*
* @author Rob Winch
* @see AbstractJaasAuthenticationProvider
* @see InMemoryConfiguration
*/
public class DefaultJaasAuthenticationProvider extends AbstractJaasAuthenticationProvider {
private Configuration configuration;
@Override
public void afterPropertiesSet() throws Exception {
super.afterPropertiesSet();
Assert.notNull(this.configuration, "configuration cannot be null.");
}
/**
* Creates a LoginContext using the Configuration that was specified in
* {@link #setConfiguration(Configuration)}.
*/
@Override
protected LoginContext createLoginContext(CallbackHandler handler) throws LoginException {
return new LoginContext(getLoginContextName(), null, handler, getConfiguration());
}
protected Configuration getConfiguration() {
return this.configuration;
}
/**
* Sets the Configuration to use for Authentication.
* @param configuration the Configuration that is used when
* {@link #createLoginContext(CallbackHandler)} is called.
*/
public void setConfiguration(Configuration configuration) {
this.configuration = configuration;
}
}
相关信息
相关文章
spring security AbstractJaasAuthenticationProvider 源码
spring security AuthorityGranter 源码
spring security DefaultLoginExceptionResolver 源码
spring security JaasAuthenticationCallbackHandler 源码
spring security JaasAuthenticationProvider 源码
spring security JaasAuthenticationToken 源码
spring security JaasGrantedAuthority 源码
spring security JaasNameCallbackHandler 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦