Javadoc updates.

This commit is contained in:
Luke Taylor 2009-05-31 21:28:50 +00:00
parent 9993a7f6e4
commit 67ad0456a1
3 changed files with 11 additions and 2 deletions

View File

@ -16,7 +16,6 @@ import org.springframework.expression.ExpressionParser;
import org.springframework.expression.spel.antlr.SpelAntlrExpressionParser;
import org.springframework.security.access.PermissionEvaluator;
import org.springframework.security.access.expression.ExpressionUtils;
import org.springframework.security.access.expression.SecurityExpressionRoot;
import org.springframework.security.authentication.AuthenticationTrustResolver;
import org.springframework.security.authentication.AuthenticationTrustResolverImpl;
import org.springframework.security.core.Authentication;
@ -44,7 +43,7 @@ public class DefaultMethodSecurityExpressionHandler implements MethodSecurityExp
/**
* Uses a {@link MethodSecurityEvaluationContext} as the <tt>EvaluationContext</tt> implementation and
* configures it with a {@link SecurityExpressionRoot} instance as the expression root object.
* configures it with a {@link MethodSecurityExpressionRoot} instance as the expression root object.
*/
public EvaluationContext createEvaluationContext(Authentication auth, MethodInvocation mi) {
MethodSecurityEvaluationContext ctx = new MethodSecurityEvaluationContext(auth, mi, parameterNameDiscoverer);

View File

@ -1,2 +1,8 @@
<html>
<body>
<p>
Expression handling code to support the use of Spring-EL based expressions in @PreAuthorize, @PreFilter,
@PostAuthorizue and @PostFilter annotations. Mainly for internal framework use and liable to change.
</p>
</body>
</html>

View File

@ -1,6 +1,10 @@
<html>
<body>
<p>
Contains the infrastructure classes for handling the @PreAuthorize, @PreFilter, @PostAuthorize and
@PostFilter annotations.
</p>
Other than the annotations themselves, the classes should be regarded as for internal framework use and
are liable to change without notice.
</body>
</html>