1 package fr.ifremer.quadrige2.core.vo.referential.taxon;
2
3 /*-
4 * #%L
5 * Quadrige2 Core :: Quadrige2 Client Core
6 * $Id:$
7 * $HeadURL:$
8 * %%
9 * Copyright (C) 2017 Ifremer
10 * %%
11 * This program is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Affero General Public License as published by
13 * the Free Software Foundation, either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU Affero General Public License
22 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 * #L%
24 */
25
26 /**
27 * Created by blavenie on 31/08/15.
28 */
29 public class TaxonGroupVO {
30
31 private Integer id;
32
33 private String name;
34
35 /**
36 * <p>
37 * Getter for the field <code>id</code>.
38 * </p>
39 *
40 * @return a {@link java.lang.Integer} object.
41 */
42 public Integer getId() {
43 return id;
44 }
45
46 /**
47 * <p>
48 * Setter for the field <code>id</code>.
49 * </p>
50 *
51 * @param id
52 * a {@link java.lang.Integer} object.
53 */
54 public void setId(Integer id) {
55 this.id = id;
56 }
57
58 /**
59 * <p>
60 * Getter for the field <code>name</code>.
61 * </p>
62 *
63 * @return a {@link java.lang.String} object.
64 */
65 public String getName() {
66 return name;
67 }
68
69 /**
70 * <p>
71 * Setter for the field <code>name</code>.
72 * </p>
73 *
74 * @param name
75 * a {@link java.lang.String} object.
76 */
77 public void setName(String name) {
78 this.name = name;
79 }
80 }