View Javadoc

1   /*
2   Copyright 2010 James Pether Sörling Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 
3   	$Id
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  }