You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shiro.apache.org by "Les Hazlewood (JIRA)" <ji...@apache.org> on 2010/05/13 09:20:42 UTC

[jira] Updated: (SHIRO-158) Date AbstractSessionManager.getLastAccessTime(Serializable) returns start time

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

Les Hazlewood updated SHIRO-158:
--------------------------------

    Fix Version/s: 1.0.0

> Date AbstractSessionManager.getLastAccessTime(Serializable) returns start time
> ------------------------------------------------------------------------------
>
>                 Key: SHIRO-158
>                 URL: https://issues.apache.org/jira/browse/SHIRO-158
>             Project: Shiro
>          Issue Type: Bug
>          Components: Session Management
>    Affects Versions: 1.0.0
>            Reporter: Bryan Turner
>             Fix For: 1.0.0
>
>
> Direct from the class:
> {code}
>     public Date getStartTimestamp(Serializable sessionId) {
>         return getSession(sessionId).getStartTimestamp();
>     }
>     public Date getLastAccessTime(Serializable sessionId) {
>         return getSession(sessionId).getStartTimestamp();
>     }
> {code}
> It seems like getLastAccessTime should be:
> {code}
>     public Date getLastAccessTime(Serializable sessionId) {
>         return getSession(sessionId).getLastAccessTime();
>     }
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.