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