Project

General

Profile

Download (757 Bytes) Statistics
| Branch: | Tag: | Revision:
1 88670522 Andreas Kohlbecker
// $Id$
2 78cf2c57 Andreas Kohlbecker
/**
3
* Copyright (C) 2007 EDIT
4
* European Distributed Institute of Taxonomy 
5
* http://www.e-taxonomy.eu
6
* 
7
* The contents of this file are subject to the Mozilla Public License Version 1.1
8
* See LICENSE.TXT at the top of this package for the full license terms.
9
*/
10 5200456b ben.clark
package eu.etaxonomy.cdm.remote.dto.tdwg.voc;
11
12
import javax.xml.bind.annotation.XmlAccessType;
13
import javax.xml.bind.annotation.XmlAccessorType;
14
import javax.xml.bind.annotation.XmlRootElement;
15
import javax.xml.bind.annotation.XmlType;
16
17
import eu.etaxonomy.cdm.remote.dto.tdwg.Actor;
18
19
@XmlAccessorType(XmlAccessType.FIELD)
20
@XmlType(name = "Team", propOrder = {
21
})
22
@XmlRootElement(name = "Team", namespace = "http://rs.tdwg.org/ontology/voc/Team#")
23
public class Team extends Actor {
24
25
}