Project

General

Profile

Download (1.36 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 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
package eu.etaxonomy.cdm.remote.dto.tdwg.voc;
10

    
11
import javax.xml.bind.annotation.XmlAccessType;
12
import javax.xml.bind.annotation.XmlAccessorType;
13
import javax.xml.bind.annotation.XmlElement;
14
import javax.xml.bind.annotation.XmlRootElement;
15
import javax.xml.bind.annotation.XmlType;
16

    
17
import eu.etaxonomy.cdm.remote.dto.tdwg.Name;
18

    
19
@XmlAccessorType(XmlAccessType.FIELD)
20
@XmlType(name = "TaxonName", propOrder = {
21
	    "authorship",
22
	    "nameComplete"
23
})
24
@XmlRootElement(name = "TaxonName", namespace = "http://rs.tdwg.org/ontology/voc/TaxonName#")
25
public class TaxonName extends Name {
26

    
27
	@XmlElement(namespace = "http://rs.tdwg.org/ontology/voc/TaxonName#")
28
	private String authorship;
29

    
30
	@XmlElement(namespace = "http://rs.tdwg.org/ontology/voc/TaxonName#")
31
	private String nameComplete;
32

    
33
	public String getAuthorship() {
34
		return authorship;
35
	}
36

    
37
	public void setAuthorship(String authorship) {
38
		this.authorship = authorship;
39
	}
40

    
41
	public String getNameComplete() {
42
		return nameComplete;
43
	}
44

    
45
	public void setNameComplete(String nameComplete) {
46
		this.nameComplete = nameComplete;
47
	}
48
}
(10-10/12)