Project

General

Profile

1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 
3
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4
// Any modifications to this file will be lost upon recompilation of the source schema. 
5
// Generated on: 2014.05.29 at 10:46:46 AM CEST 
6
//
7

    
8

    
9
package eu.dnetlib.schema.oaf;
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.XmlSchemaType;
15
import javax.xml.bind.annotation.XmlType;
16

    
17

    
18
/**
19
 * <p>Java class for webresourceType complex type.
20
 * 
21
 * <p>The following schema fragment specifies the expected content contained within this class.
22
 * 
23
 * <pre>
24
 * &lt;complexType name="webresourceType">
25
 *   &lt;complexContent>
26
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27
 *       &lt;sequence>
28
 *         &lt;element name="url" type="{http://www.w3.org/2001/XMLSchema}anyURI"/>
29
 *       &lt;/sequence>
30
 *     &lt;/restriction>
31
 *   &lt;/complexContent>
32
 * &lt;/complexType>
33
 * </pre>
34
 * 
35
 * 
36
 */
37
@XmlAccessorType(XmlAccessType.FIELD)
38
@XmlType(name = "webresourceType", propOrder = {
39
    "url"
40
})
41
public class WebresourceType {
42

    
43
    @XmlElement(required = true)
44
    @XmlSchemaType(name = "anyURI")
45
    protected String url;
46

    
47
    /**
48
     * Gets the value of the url property.
49
     * 
50
     * @return
51
     *     possible object is
52
     *     {@link String }
53
     *     
54
     */
55
    public String getUrl() {
56
        return url;
57
    }
58

    
59
    /**
60
     * Sets the value of the url property.
61
     * 
62
     * @param value
63
     *     allowed object is
64
     *     {@link String }
65
     *     
66
     */
67
    public void setUrl(String value) {
68
        this.url = value;
69
    }
70

    
71
}
(28-28/29)