Project

General

Profile

Download (2.66 KB) Statistics
| Branch: | Revision:
1
/**
2
* Copyright (C) 2009 EDIT
3
* European Distributed Institute of Taxonomy 
4
* http://www.e-taxonomy.eu
5
* 
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9

    
10
package eu.etaxonomy.cdm.io.pesi.faunaEuropaea;
11

    
12
import java.util.UUID;
13

    
14
import org.joda.time.DateTime;
15

    
16
/**
17
 * @author a.babadshanjan
18
 * @created 11.09.2009
19
 * @version 1.0
20
 */
21
public class FaunaEuropaeaDistribution {
22
	
23
	private UUID taxonUuid;
24
	private int taxonId;
25
	private int distributionId;
26
	private int occurrenceStatusId;
27
	private int areaId;
28
	private String areaName;
29
	private String areaCode;
30
	private int extraLimital;
31
	
32
	
33
	
34
	
35
//	/**
36
//	 * @return the taxonUuid
37
//	 */
38
//	public UUID getTaxonUuid() {
39
//		return taxonUuid;
40
//	}
41
//	/**
42
//	 * @param taxonUuid the taxonUuid to set
43
//	 */
44
//	public void setTaxonUuid(UUID taxonUuid) {
45
//		this.taxonUuid = taxonUuid;
46
//	}
47
//	/**
48
//	 * @return the taxonId
49
//	 */
50
//	public int getTaxonId() {
51
//		return taxonId;
52
//	}
53
//	/**
54
//	 * @param taxonId the taxonId to set
55
//	 */
56
//	public void setTaxonId(int taxonId) {
57
//		this.taxonId = taxonId;
58
//	}
59
	/**
60
	 * @return the distributionId
61
	 */
62
	public int getDistributionId() {
63
		return distributionId;
64
	}
65
	/**
66
	 * @param distributionId the distributionId to set
67
	 */
68
	public void setDistributionId(int distributionId) {
69
		this.distributionId = distributionId;
70
	}
71
	/**
72
	 * @return the occurrenceStatusId
73
	 */
74
	public int getOccurrenceStatusId() {
75
		return occurrenceStatusId;
76
	}
77
	/**
78
	 * @param occurrenceStatusId the occurrenceStatusId to set
79
	 */
80
	public void setOccurrenceStatusId(int occurrenceStatusId) {
81
		this.occurrenceStatusId = occurrenceStatusId;
82
	}
83
	/**
84
	 * @return the areaId
85
	 */
86
	public int getAreaId() {
87
		return areaId;
88
	}
89
	/**
90
	 * @param areaId the areaId to set
91
	 */
92
	public void setAreaId(int areaId) {
93
		this.areaId = areaId;
94
	}
95
	/**
96
	 * @return the areaName
97
	 */
98
	public String getAreaName() {
99
		return areaName;
100
	}
101
	/**
102
	 * @param areaName the areaName to set
103
	 */
104
	public void setAreaName(String areaName) {
105
		this.areaName = areaName;
106
	}
107
	/**
108
	 * @return the areaCode
109
	 */
110
	public String getAreaCode() {
111
		return areaCode;
112
	}
113
	/**
114
	 * @param areaCode the areaCode to set
115
	 */
116
	public void setAreaCode(String areaCode) {
117
		this.areaCode = areaCode;
118
	}
119
	/**
120
	 * @return the extraLimital
121
	 */
122
	public int getExtraLimital() {
123
		return extraLimital;
124
	}
125
	/**
126
	 * @param extraLimital the extraLimital to set
127
	 */
128
	public void setExtraLimital(int extraLimital) {
129
		this.extraLimital = extraLimital;
130
	}
131
	
132

    
133
}
(3-3/17)