[jbossseam-issues] [JBoss JIRA] Closed: (JBSEAM-856) @Restrict on a class doesn't restrict access to methods implemented in super-classes
Gavin King (JIRA)
jira-events at lists.jboss.org
Fri Feb 16 12:01:29 EST 2007
[ http://jira.jboss.com/jira/browse/JBSEAM-856?page=all ]
Gavin King closed JBSEAM-856.
-----------------------------
Fix Version/s: 1.1.7.GA
Resolution: Done
Assignee: Gavin King
thanks, fixed, please test
> @Restrict on a class doesn't restrict access to methods implemented in super-classes
> ------------------------------------------------------------------------------------
>
> Key: JBSEAM-856
> URL: http://jira.jboss.com/jira/browse/JBSEAM-856
> Project: JBoss Seam
> Issue Type: Bug
> Components: Security
> Affects Versions: 1.1.6.GA
> Reporter: Stephan Bublava
> Assigned To: Gavin King
> Fix For: 1.1.7.GA
>
>
> Example:
> public class AbstractComponent {
> public String action1() {
> return null;
> }
> }
> @Name("component")
> @Restrict
> public class Component extends AbstractComponent {
> public String action2() {
> return null;
> }
> }
> With this setup, using #{component.action1} does not cause a permission check.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the seam-issues
mailing list