Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
8d220af7
Commit
8d220af7
authored
14 years ago
by
cramakri
Browse files
Options
Downloads
Patches
Plain Diff
LMS-2131 Do not logout if started with a valid session.
SVN: 20588
parent
bbc32101
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
datastore_server/source/java/ch/systemsx/cisd/openbis/dss/client/api/gui/AbstractSwingGUI.java
+23
-2
23 additions, 2 deletions
...msx/cisd/openbis/dss/client/api/gui/AbstractSwingGUI.java
with
23 additions
and
2 deletions
datastore_server/source/java/ch/systemsx/cisd/openbis/dss/client/api/gui/AbstractSwingGUI.java
+
23
−
2
View file @
8d220af7
...
...
@@ -57,6 +57,8 @@ public abstract class AbstractSwingGUI
private
final
JFrame
windowFrame
;
private
final
boolean
logoutOnClose
;
private
static
final
long
KEEP_ALIVE_PERIOD_MILLIS
=
60
*
1000
;
// Every minute.
/**
...
...
@@ -80,7 +82,10 @@ public abstract class AbstractSwingGUI
{
try
{
dssComponent
.
logout
();
if
(
logoutOnClose
)
{
dssComponent
.
logout
();
}
}
catch
(
InvalidSessionException
ex
)
{
// Silence this exception.
...
...
@@ -100,6 +105,8 @@ public abstract class AbstractSwingGUI
notifyUserOfThrowable
(
windowFrame
,
message
,
"Unexpected Error"
,
throwable
);
}
});
logoutOnClose
=
communicationState
.
isLogoutOnClose
();
}
public
String
getSessionId
()
...
...
@@ -127,7 +134,10 @@ public abstract class AbstractSwingGUI
{
if
(
cancel
())
{
dssComponent
.
logout
();
if
(
logoutOnClose
)
{
dssComponent
.
logout
();
}
System
.
exit
(
0
);
}
}
...
...
@@ -355,6 +365,8 @@ class DssCommunicationState
private
final
IGeneralInformationService
generalInformationService
;
private
final
boolean
logoutOnClose
;
private
static
IGeneralInformationService
createGeneralInformationService
(
String
openBISURL
)
{
ServiceFinder
generalInformationServiceFinder
=
...
...
@@ -388,6 +400,8 @@ class DssCommunicationState
throw
new
ConfigurationFailureException
(
"The openBIS File Upload Client was improperly configured -- the session token is not valid. Please talk to the openBIS administrator."
);
}
// Don't logout -- the user wants to keep his/her session token alive.
logoutOnClose
=
false
;
break
;
default
:
String
userName
=
args
[
1
];
...
...
@@ -398,6 +412,8 @@ class DssCommunicationState
throw
new
ConfigurationFailureException
(
"The user name / password combination is incorrect."
);
}
// Do logout on close
logoutOnClose
=
true
;
}
generalInformationService
=
createGeneralInformationService
(
openBisUrl
);
...
...
@@ -412,4 +428,9 @@ class DssCommunicationState
{
return
generalInformationService
;
}
public
boolean
isLogoutOnClose
()
{
return
logoutOnClose
;
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment