View Javadoc
1   package fr.ifremer.quadrige3.core.vo.referential.pmfm;
2   
3   /*-
4    * #%L
5    * Quadrige3 Core :: Quadrige3 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 UnitVO {
30  
31  	private Integer id;
32  
33  	private String name;
34  
35  	private String symbol;
36  
37  	/**
38  	 * <p>
39  	 * Getter for the field <code>id</code>.
40  	 * </p>
41  	 * 
42  	 * @return a {@link java.lang.Integer} object.
43  	 */
44  	public Integer getId() {
45  		return id;
46  	}
47  
48  	/**
49  	 * <p>
50  	 * Setter for the field <code>id</code>.
51  	 * </p>
52  	 * 
53  	 * @param id
54  	 *            a {@link java.lang.Integer} object.
55  	 */
56  	public void setId(Integer id) {
57  		this.id = id;
58  	}
59  
60  	/**
61  	 * <p>
62  	 * Getter for the field <code>name</code>.
63  	 * </p>
64  	 * 
65  	 * @return a {@link java.lang.String} object.
66  	 */
67  	public String getName() {
68  		return name;
69  	}
70  
71  	/**
72  	 * <p>
73  	 * Setter for the field <code>name</code>.
74  	 * </p>
75  	 * 
76  	 * @param name
77  	 *            a {@link java.lang.String} object.
78  	 */
79  	public void setName(String name) {
80  		this.name = name;
81  	}
82  
83  	/**
84  	 * <p>
85  	 * Getter for the field <code>symbol</code>.
86  	 * </p>
87  	 * 
88  	 * @return a {@link java.lang.String} object.
89  	 */
90  	public String getSymbol() {
91  		return symbol;
92  	}
93  
94  	/**
95  	 * <p>
96  	 * Setter for the field <code>symbol</code>.
97  	 * </p>
98  	 * 
99  	 * @param symbol
100 	 *            a {@link java.lang.String} object.
101 	 */
102 	public void setSymbol(String symbol) {
103 		this.symbol = symbol;
104 	}
105 }