1   
2   
3   
4   
5   package org.directdemocracyportal.democracy.service.command;
6   
7   /***
8    * The Class CreatePartyCommand.
9    */
10  public class CreatePartyCommand
11  {
12  
13      /*** The name. */
14      private String name;
15  
16      /*** The country id. */
17      private Long countryId;
18  
19      /***
20       * Gets the name.
21       *
22       * @return the name
23       */
24      public String getName() {
25          return name;
26      }
27  
28      /***
29       * Sets the name.
30       *
31       * @param name the new name
32       */
33      public void setName(String name) {
34          this.name = name;
35      }
36  
37      /***
38       * Gets the country id.
39       *
40       * @return the country id
41       */
42      public Long getCountryId() {
43          return countryId;
44      }
45  
46      /***
47       * Sets the country id.
48       *
49       * @param countryId the new country id
50       */
51      public void setCountryId(Long countryId) {
52          this.countryId = countryId;
53      }
54  }