Project

General

Profile

Download (1.8 KB) Statistics
| Branch: | Tag: | Revision:
1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-fcs 
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: 2009.11.02 at 12:58:05 PM GMT 
6
//
7

    
8

    
9
package eu.etaxonomy.cdm.remote.dto.oaipmh;
10

    
11
import javax.xml.bind.annotation.XmlAccessType;
12
import javax.xml.bind.annotation.XmlAccessorType;
13
import javax.xml.bind.annotation.XmlAnyElement;
14
import javax.xml.bind.annotation.XmlType;
15

    
16

    
17
/**
18
 * Data "about" the record must be expressed in XML
19
 *       that is compliant with an XML Schema defined by a community.
20
 * 
21
 * <p>Java class for aboutType complex type.
22
 * 
23
 * <p>The following schema fragment specifies the expected content contained within this class.
24
 * 
25
 * <pre>
26
 * &lt;complexType name="aboutType">
27
 *   &lt;complexContent>
28
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29
 *       &lt;sequence>
30
 *         &lt;any/>
31
 *       &lt;/sequence>
32
 *     &lt;/restriction>
33
 *   &lt;/complexContent>
34
 * &lt;/complexType>
35
 * </pre>
36
 * 
37
 * 
38
 */
39
@XmlAccessorType(XmlAccessType.FIELD)
40
@XmlType(name = "aboutType", propOrder = {
41
    "any"
42
})
43
public class About {
44

    
45
    @XmlAnyElement(lax = true)
46
    protected Object any;
47

    
48
    /**
49
     * Gets the value of the any property.
50
     * 
51
     * @return
52
     *     possible object is
53
     *     {@link Object }
54
     *     
55
     */
56
    public Object getAny() {
57
        return any;
58
    }
59

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

    
72
}
(1-1/27)