• R/O
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision173 (tree)
Time2015-12-31 18:28:49
Authort_nakayama1971

Log Message

(empty log message)

Change Summary

Incremental Difference

--- trunk/framework/pjWeb/WEB-INF/src/project/web/processor/AuthenticationProcessor.java (revision 172)
+++ trunk/framework/pjWeb/WEB-INF/src/project/web/processor/AuthenticationProcessor.java (revision 173)
@@ -118,7 +118,7 @@
118118 }
119119
120120 // アクション時間設定
121- auth.setActionTime(su.getUid(), uf.getDateTime(), session.getId());
121+ auth.setActionTime(su.getUid(), uf.getPresent(), session.getId());
122122 }
123123
124124 return null;
--- trunk/framework/pjWeb/WEB-INF/src/project/web/auth/LogoffAction.java (revision 172)
+++ trunk/framework/pjWeb/WEB-INF/src/project/web/auth/LogoffAction.java (revision 173)
@@ -34,7 +34,7 @@
3434 try {
3535 // ログオフ処理
3636 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());
3838 } finally {
3939 uf.setSessionUser(null);
4040 try {
--- trunk/framework/pjWeb/WEB-INF/src/project/web/auth/LogonActionImpl.java (revision 172)
+++ trunk/framework/pjWeb/WEB-INF/src/project/web/auth/LogonActionImpl.java (revision 173)
@@ -8,6 +8,7 @@
88 import javax.servlet.http.HttpServletResponse;
99 import javax.servlet.http.HttpSession;
1010
11+import core.config.Factory;
1112 import online.model.ModelUtil;
1213 import online.model.check.InputCheck;
1314 import online.model.session.SessionAttribute;
@@ -20,7 +21,6 @@
2021 import project.svc.auth.SessionInfo;
2122 import project.svc.auth.SessionInfo.LogoffType;
2223 import project.web.InstanceFactory;
23-import core.config.Factory;
2424
2525
2626 /**
@@ -82,7 +82,7 @@
8282
8383 // ログオン情報設定
8484 SessionInfo li = auth.updateStatus(uf.getString(TAG_UID),
85- uf.getDateTime(), session.getId(), session.getMaxInactiveInterval());
85+ uf.getPresent(), session.getId(), session.getMaxInactiveInterval());
8686
8787 // 強制ログアウト時
8888 if (LogoffType.TYPE_FORCE.equals(li.getLogoffType())) {
--- trunk/framework/pjWeb/WEB-INF/src/project/web/job/PollingAction.java (revision 172)
+++ trunk/framework/pjWeb/WEB-INF/src/project/web/job/PollingAction.java (revision 173)
@@ -88,7 +88,7 @@
8888 uf.setValue(TAG_CANCEL_TYPE, jinfo.getCancelType());
8989 }
9090
91- return toResultValue(job, uf.getDateTime());
91+ return toResultValue(job, uf.getPresent());
9292 }
9393 }
9494 }