| Revision | 173 (tree) |
|---|---|
| Time | 2015-12-31 18:28:49 |
| Author | t_nakayama1971 |
(empty log message)
| @@ -118,7 +118,7 @@ | ||
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | // アクション時間設定 |
| 121 | - auth.setActionTime(su.getUid(), uf.getDateTime(), session.getId()); | |
| 121 | + auth.setActionTime(su.getUid(), uf.getPresent(), session.getId()); | |
| 122 | 122 | } |
| 123 | 123 | |
| 124 | 124 | return null; |
| @@ -34,7 +34,7 @@ | ||
| 34 | 34 | try { |
| 35 | 35 | // ログオフ処理 |
| 36 | 36 | Authentication auth = Factory.create(Authentication.class); |
| 37 | - auth.logoff(uf.getSessionUser().getUid(), session.getId(), uf.getDateTime()); | |
| 37 | + auth.logoff(uf.getSessionUser().getUid(), session.getId(), uf.getPresent()); | |
| 38 | 38 | } finally { |
| 39 | 39 | uf.setSessionUser(null); |
| 40 | 40 | try { |
| @@ -8,6 +8,7 @@ | ||
| 8 | 8 | import javax.servlet.http.HttpServletResponse; |
| 9 | 9 | import javax.servlet.http.HttpSession; |
| 10 | 10 | |
| 11 | +import core.config.Factory; | |
| 11 | 12 | import online.model.ModelUtil; |
| 12 | 13 | import online.model.check.InputCheck; |
| 13 | 14 | import online.model.session.SessionAttribute; |
| @@ -20,7 +21,6 @@ | ||
| 20 | 21 | import project.svc.auth.SessionInfo; |
| 21 | 22 | import project.svc.auth.SessionInfo.LogoffType; |
| 22 | 23 | import project.web.InstanceFactory; |
| 23 | -import core.config.Factory; | |
| 24 | 24 | |
| 25 | 25 | |
| 26 | 26 | /** |
| @@ -82,7 +82,7 @@ | ||
| 82 | 82 | |
| 83 | 83 | // ログオン情報設定 |
| 84 | 84 | SessionInfo li = auth.updateStatus(uf.getString(TAG_UID), |
| 85 | - uf.getDateTime(), session.getId(), session.getMaxInactiveInterval()); | |
| 85 | + uf.getPresent(), session.getId(), session.getMaxInactiveInterval()); | |
| 86 | 86 | |
| 87 | 87 | // 強制ログアウト時 |
| 88 | 88 | if (LogoffType.TYPE_FORCE.equals(li.getLogoffType())) { |
| @@ -88,7 +88,7 @@ | ||
| 88 | 88 | uf.setValue(TAG_CANCEL_TYPE, jinfo.getCancelType()); |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - return toResultValue(job, uf.getDateTime()); | |
| 91 | + return toResultValue(job, uf.getPresent()); | |
| 92 | 92 | } |
| 93 | 93 | } |
| 94 | 94 | } |