Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abook_check
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abook_android
abook_check
Commits
b12b678b
Commit
b12b678b
authored
Jun 15, 2023
by
Kazuyuki Hida
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
コメントを追加
parent
a5a2bd18
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
6 deletions
+2
-6
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/AcmsDao.java
+0
-3
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVNoAuthenticatedActivity.java
+2
-2
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/helper/LogoutHelper.java
+0
-1
No files found.
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/AcmsDao.java
View file @
b12b678b
...
...
@@ -57,9 +57,6 @@ public class AcmsDao extends AbstractDao {
insert
(
"insert into m_acms (url_path, acms_address,download_server_address, websocket_server_http_url, websocket_server_ws_url, schedulelist_last_fetch_date, contentversion_last_fetch_date) values (?,?,?,?,?,?,?)"
,
acmsDto
.
getInsertValues
());
}
/**
* ログイン情報の削除
*/
public
void
deleteAcms
()
{
delete
(
"m_acms"
,
""
,
null
);
}
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVNoAuthenticatedActivity.java
View file @
b12b678b
...
...
@@ -118,7 +118,7 @@ public abstract class ABVNoAuthenticatedActivity extends ABVActivity {
// 同意したら初期化
doShowMainActivity
();
}
else
{
// 規約に同意しなかったので、ログアウト
(ログイン直後なので、ログイン情報をクリア)
// 規約に同意しなかったので、ログアウト
LogoutHelper
.
logout
(
ABVNoAuthenticatedActivity
.
this
,
true
,
true
);
}
}
...
...
@@ -466,7 +466,7 @@ public abstract class ABVNoAuthenticatedActivity extends ABVActivity {
// 同意したら初期化
doMoveToHome
();
}
else
{
// 規約に同意しなかったので、ログアウト
(ログイン済みなので、ログイン情報を維持)
// 規約に同意しなかったので、ログアウト
LogoutHelper
.
logout
(
ABVNoAuthenticatedActivity
.
this
,
false
,
true
);
}
}
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/helper/LogoutHelper.java
View file @
b12b678b
...
...
@@ -37,7 +37,6 @@ public class LogoutHelper {
* ログアウトして、ログイン画面に遷移する
*
* @param activity 呼び出し元アクティビティ
* @param removeLoginInfo ログイン情報をクリアする場合はtrue
* @param launchLogin trueならLoginActivityをstart
*/
public
static
void
logout
(
Activity
activity
,
boolean
removeLoginInfo
,
boolean
launchLogin
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment