You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shiro.apache.org by "Brian Demers (JIRA)" <ji...@apache.org> on 2016/07/15 14:45:20 UTC

[jira] [Closed] (SHIRO-368) DomainPermission(string, string) constructor sets targets to the same value as actions

     [ https://issues.apache.org/jira/browse/SHIRO-368?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Brian Demers closed SHIRO-368.
------------------------------
    Resolution: Fixed

> DomainPermission(string, string) constructor sets targets to the same value as actions
> --------------------------------------------------------------------------------------
>
>                 Key: SHIRO-368
>                 URL: https://issues.apache.org/jira/browse/SHIRO-368
>             Project: Shiro
>          Issue Type: Bug
>          Components: Authorization (access control) 
>    Affects Versions: 1.2.0
>         Environment: Windows XP SP3, Intel Core2 Duo
>            Reporter: Ben Johnson
>            Priority: Minor
>             Fix For: 1.2.1
>
>         Attachments: DomainPermission.java, DomainPermission.patch, DomainPermissionTest.java
>
>
> The DomainPermission(string, string) constructor incorrectly sets the 'targets' field to the value supplied for 'actions':
> 055        public DomainPermission(String actions, String targets) {
> 056            this.domain = getDomain(getClass());
> 057            this.actions = StringUtils.splitToSet(actions, SUBPART_DIVIDER_TOKEN);
> 058            this.targets = StringUtils.splitToSet(actions, SUBPART_DIVIDER_TOKEN);
> 059            encodeParts(this.domain, actions, targets);
> 060        }



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)