1
2
3
4
5 package org.directdemocracyportal.democracy.web.action;
6
7 /***
8 * The Class ShowUserAction.
9 */
10 public class ShowUserAction extends AbstractAction
11 {
12
13 /*** The Constant serialVersionUID. */
14 private static final long serialVersionUID = -1263540444005660417L;
15
16 /*** The user id. */
17 private final Long userId;
18
19 /***
20 * Instantiates a new show user action.
21 *
22 * @param userId the user id
23 */
24 public ShowUserAction(Long userId) {
25 super();
26 this.userId = userId;
27 }
28
29 /***
30 * Gets the user id.
31 *
32 * @return the user id
33 */
34 public Long getUserId() {
35 return userId;
36 }
37
38
39 }