Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Genesys PGR
Genesys Backend
Commits
392db9af
Commit
392db9af
authored
Feb 17, 2014
by
Matija Obreza
Browse files
Make SelectionBean serializable
parent
7d61ef73
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/genesys2/server/servlet/controller/SelectionBean.java
View file @
392db9af
...
...
@@ -16,6 +16,7 @@
package
org.genesys2.server.servlet.controller
;
import
java.io.Serializable
;
import
java.util.HashSet
;
import
java.util.Set
;
...
...
@@ -25,7 +26,9 @@ import org.springframework.stereotype.Component;
@Component
@Scope
(
"session"
)
public
class
SelectionBean
{
public
class
SelectionBean
implements
Serializable
{
private
static
final
long
serialVersionUID
=
-
1084615112110837714L
;
private
Set
<
Long
>
accessionIds
=
new
HashSet
<
Long
>();
public
Set
<
Long
>
getAccessionIds
()
{
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment