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