本文整理汇总了Java中org.apache.shiro.web.filter.authc.AuthenticationFilter类的典型用法代码示例。如果您正苦于以下问题:Java AuthenticationFilter类的具体用法?Java AuthenticationFilter怎么用?Java AuthenticationFilter使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AuthenticationFilter类属于org.apache.shiro.web.filter.authc包,在下文中一共展示了AuthenticationFilter类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: applySuccessUrlIfNecessary
import org.apache.shiro.web.filter.authc.AuthenticationFilter; //导入依赖的package包/类
private void applySuccessUrlIfNecessary(Filter filter) {
String successUrl = getSuccessUrl();
if (StringUtils.hasText(successUrl) && (filter instanceof AuthenticationFilter)) {
AuthenticationFilter authcFilter = (AuthenticationFilter) filter;
//only apply the successUrl if they haven't explicitly configured one already:
String existingSuccessUrl = authcFilter.getSuccessUrl();
if (AuthenticationFilter.DEFAULT_SUCCESS_URL.equals(existingSuccessUrl)) {
authcFilter.setSuccessUrl(successUrl);
}
}
}
示例2: applySuccessUrlIfNecessary
import org.apache.shiro.web.filter.authc.AuthenticationFilter; //导入依赖的package包/类
private void applySuccessUrlIfNecessary(Filter filter) {
String successUrl = getSuccessUrl();
if (StringUtils.hasText(successUrl) && (filter instanceof AuthenticationFilter)) {
AuthenticationFilter authcFilter = (AuthenticationFilter) filter;
// only apply the successUrl if they haven't explicitly configured
// one already:
String existingSuccessUrl = authcFilter.getSuccessUrl();
if (AuthenticationFilter.DEFAULT_SUCCESS_URL.equals(existingSuccessUrl)) {
authcFilter.setSuccessUrl(successUrl);
}
}
}
示例3: applySuccessUrlIfNecessary
import org.apache.shiro.web.filter.authc.AuthenticationFilter; //导入依赖的package包/类
private void applySuccessUrlIfNecessary(Filter filter) {
String successUrl = shiroConfig.getProperty("success.url", "/");
if (StringUtils.hasText(successUrl) && (filter instanceof AuthenticationFilter)) {
AuthenticationFilter authcFilter = (AuthenticationFilter) filter;
//only apply the successUrl if they haven't explicitly configured one already:
String existingSuccessUrl = authcFilter.getSuccessUrl();
if (AuthenticationFilter.DEFAULT_SUCCESS_URL.equals(existingSuccessUrl)) {
authcFilter.setSuccessUrl(successUrl);
}
}
}
示例4: bindSuccessUrlToAuthenticationFilter
import org.apache.shiro.web.filter.authc.AuthenticationFilter; //导入依赖的package包/类
protected void bindSuccessUrlToAuthenticationFilter() {
AuthenticationFilter authenticationFilter =
getAuthenticationFilter();
if (authenticationFilter != null) {
log.debug("Bind success url {}", successUrl);
authenticationFilter.setSuccessUrl(successUrl);
}
}
示例5: expectSettingSuccessUrl
import org.apache.shiro.web.filter.authc.AuthenticationFilter; //导入依赖的package包/类
private void expectSettingSuccessUrl(String successUrl) {
AuthenticationFilter filterMock = expectGettingFormAuthenticationFilter();
// expect setting success url
filterMock.setSuccessUrl(successUrl);
}
示例6: getAuthenticationFilter
import org.apache.shiro.web.filter.authc.AuthenticationFilter; //导入依赖的package包/类
/**
* Returns the active {@link AuthenticationFilter}. The base class for all Filters
* that require the current user to be authenticated. This class encapsulates
* the logic of checking whether a user is already authenticated in the system
* while subclasses are required to perform specific logic for unauthenticated
* requests.
*
* @return the active {@link AuthenticationFilter}
*/
protected AuthenticationFilter getAuthenticationFilter() {
return (AuthenticationFilter) getFilter(DefaultFilter.authc.toString());
}