1
0
mirror of synced 2026-08-04 17:27:13 +00:00

SEC-1132: Moved TextUtils to web module and StringSplit utils into Digest authentication package (as they aren't used elsewhere).

This commit is contained in:
Luke Taylor
2009-04-25 08:04:26 +00:00
parent a76cbee4bc
commit 1454cbb78e
11 changed files with 227 additions and 304 deletions
@@ -19,7 +19,7 @@ package org.springframework.security.taglibs.authz;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.context.SecurityContext;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.security.util.TextUtils;
import org.springframework.security.web.util.TextEscapeUtils;
import org.springframework.beans.BeanWrapperImpl;
import org.springframework.beans.BeansException;
@@ -121,7 +121,7 @@ public class AuthenticationTag extends TagSupport {
}
}
} else {
writeMessage(TextUtils.escapeEntities(String.valueOf(result)));
writeMessage(TextEscapeUtils.escapeEntities(String.valueOf(result)));
}
return EVAL_PAGE;
}