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
9fe0445d
Commit
9fe0445d
authored
12 years ago
by
brinn
Browse files
Options
Downloads
Patches
Plain Diff
Add cleanup listeners to Session which are called on session close.
SVN: 26252
parent
aab60486
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/dto/Session.java
+39
-0
39 additions, 0 deletions
.../ch/systemsx/cisd/openbis/generic/shared/dto/Session.java
with
39 additions
and
0 deletions
openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/dto/Session.java
+
39
−
0
View file @
9fe0445d
...
...
@@ -16,6 +16,9 @@
package
ch.systemsx.cisd.openbis.generic.shared.dto
;
import
java.util.LinkedHashSet
;
import
java.util.Set
;
import
org.apache.commons.lang.time.DateFormatUtils
;
import
ch.systemsx.cisd.authentication.BasicSession
;
...
...
@@ -32,6 +35,14 @@ public final class Session extends BasicSession implements IAuthSession
final
private
static
long
serialVersionUID
=
1L
;
public
interface
ISessionCleaner
{
/**
* Method called at the end of a session to perform some sort of cleanup.
*/
public
void
cleanup
();
}
/**
* The {@link PersonPE} represented by this <code>Session</code> or <code>null</code> if it is
* not defined.
...
...
@@ -43,6 +54,8 @@ public final class Session extends BasicSession implements IAuthSession
*/
private
String
baseIndexURL
;
private
final
Set
<
ISessionCleaner
>
cleanupListeners
=
new
LinkedHashSet
<
ISessionCleaner
>();
@Deprecated
public
Session
()
{
...
...
@@ -61,6 +74,16 @@ public final class Session extends BasicSession implements IAuthSession
super
(
sessionToken
,
userName
,
principal
,
remoteHost
,
sessionStart
,
expirationTime
);
}
@Override
public
void
cleanup
()
{
super
.
cleanup
();
for
(
ISessionCleaner
cleaner
:
cleanupListeners
)
{
cleaner
.
cleanup
();
}
}
public
final
void
setPerson
(
final
PersonPE
person
)
{
this
.
personOrNull
=
person
;
...
...
@@ -125,6 +148,22 @@ public final class Session extends BasicSession implements IAuthSession
return
personOrNull
==
null
?
super
.
getUserName
()
:
personOrNull
.
getUserId
();
}
/**
* Adds a new listener for session cleanup.
*/
public
void
addCleanupListener
(
ISessionCleaner
sessionCleaner
)
{
cleanupListeners
.
add
(
sessionCleaner
);
}
/**
* Removes a registered listener for session cleanup.
*/
public
void
removeCleanupListener
(
ISessionCleaner
sessionCleaner
)
{
cleanupListeners
.
remove
(
sessionCleaner
);
}
//
// Object
//
...
...
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