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.06.11 at 10:19:20 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.XmlAttribute;
14
import javax.xml.bind.annotation.XmlSchemaType;
15
import javax.xml.bind.annotation.XmlType;
16

    
17

    
18
/**
19
 * <p>Java class for journalType complex type.
20
 * 
21
 * <p>The following schema fragment specifies the expected content contained within this class.
22
 * 
23
 * <pre>
24
 * &lt;complexType name="journalType">
25
 *   &lt;simpleContent>
26
 *     &lt;extension base="&lt;http://namespace.openaire.eu/oaf>inferenceExtendedStringType">
27
 *       &lt;attribute name="eissn" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
28
 *       &lt;attribute name="issn" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
29
 *       &lt;attribute name="lissn" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
30
 *     &lt;/extension>
31
 *   &lt;/simpleContent>
32
 * &lt;/complexType>
33
 * </pre>
34
 * 
35
 * 
36
 */
37
@XmlAccessorType(XmlAccessType.FIELD)
38
@XmlType(name = "journalType")
39
public class JournalType
40
    extends InferenceExtendedStringType
41
{
42

    
43
    @XmlAttribute(name = "eissn")
44
    @XmlSchemaType(name = "anySimpleType")
45
    protected String eissn;
46
    @XmlAttribute(name = "issn")
47
    @XmlSchemaType(name = "anySimpleType")
48
    protected String issn;
49
    @XmlAttribute(name = "lissn")
50
    @XmlSchemaType(name = "anySimpleType")
51
    protected String lissn;
52

    
53
    /**
54
     * Gets the value of the eissn property.
55
     * 
56
     * @return
57
     *     possible object is
58
     *     {@link String }
59
     *     
60
     */
61
    public String getEissn() {
62
        return eissn;
63
    }
64

    
65
    /**
66
     * Sets the value of the eissn property.
67
     * 
68
     * @param value
69
     *     allowed object is
70
     *     {@link String }
71
     *     
72
     */
73
    public void setEissn(String value) {
74
        this.eissn = value;
75
    }
76

    
77
    /**
78
     * Gets the value of the issn property.
79
     * 
80
     * @return
81
     *     possible object is
82
     *     {@link String }
83
     *     
84
     */
85
    public String getIssn() {
86
        return issn;
87
    }
88

    
89
    /**
90
     * Sets the value of the issn property.
91
     * 
92
     * @param value
93
     *     allowed object is
94
     *     {@link String }
95
     *     
96
     */
97
    public void setIssn(String value) {
98
        this.issn = value;
99
    }
100

    
101
    /**
102
     * Gets the value of the lissn property.
103
     * 
104
     * @return
105
     *     possible object is
106
     *     {@link String }
107
     *     
108
     */
109
    public String getLissn() {
110
        return lissn;
111
    }
112

    
113
    /**
114
     * Sets the value of the lissn property.
115
     * 
116
     * @param value
117
     *     allowed object is
118
     *     {@link String }
119
     *     
120
     */
121
    public void setLissn(String value) {
122
        this.lissn = value;
123
    }
124

    
125
}
(18-18/32)