Project

General

Profile

Download (1.17 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
/**
10
* Copyright (C) 2007 EDIT
11
* European Distributed Institute of Taxonomy
12
* http://www.e-taxonomy.eu
13
*
14
* The contents of this file are subject to the Mozilla Public License Version 1.1
15
* See LICENSE.TXT at the top of this package for the full license terms.
16
*/
17
package eu.etaxonomy.cdm.remote.dto.tdwg.voc;
18

    
19
import java.io.Serializable;
20

    
21
import javax.xml.bind.annotation.XmlAccessType;
22
import javax.xml.bind.annotation.XmlAccessorType;
23
import javax.xml.bind.annotation.XmlAttribute;
24
import javax.xml.bind.annotation.XmlType;
25

    
26
@XmlAccessorType(XmlAccessType.FIELD)
27
@XmlType(name = "", propOrder = {})
28
public abstract class LinkType {
29

    
30
	@XmlAttribute(namespace = "http://www.w3.org/1999/02/22-rdf-syntax-ns#")
31
    protected java.net.URI resource;
32

    
33
	public Serializable getResource() {
34
		return resource;
35
	}
36
    public void setResource(java.net.URI resource) {
37
        this.resource = resource;
38
    }
39
}
(3-3/12)