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