Subversion Repositories XServices

Rev

Rev 129 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
125 brianR 1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-147
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: 2012.11.16 at 05:17:00 PM MEZ
6
//
7
 
8
 
9
package net.brutex.xservices.types.scmfindings;
10
 
11
import java.io.Serializable;
12
import java.util.ArrayList;
13
import java.util.List;
14
import javax.xml.bind.annotation.XmlAccessType;
15
import javax.xml.bind.annotation.XmlAccessorType;
16
import javax.xml.bind.annotation.XmlElement;
17
import javax.xml.bind.annotation.XmlType;
18
 
19
 
20
/**
21
 * <p>Java class for FindingDetailsType complex type.
22
 *
23
 * <p>The following schema fragment specifies the expected content contained within this class.
24
 *
25
 * <pre>
26
 * &lt;complexType name="FindingDetailsType">
27
 *   &lt;complexContent>
28
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29
 *       &lt;sequence>
30
 *         &lt;element name="fullmatch" type="{http://ws.brutex.net/SCMFindingsTypes}GroupMatchListType"/>
31
 *         &lt;element name="matchList" type="{http://ws.brutex.net/SCMFindingsTypes}GroupMatchListType" maxOccurs="unbounded" minOccurs="0"/>
32
 *         &lt;element name="revision" type="{http://ws.brutex.net/SCMFindingsTypes}RevisionType"/>
33
 *       &lt;/sequence>
34
 *     &lt;/restriction>
35
 *   &lt;/complexContent>
36
 * &lt;/complexType>
37
 * </pre>
38
 *
39
 *
40
 */
41
@XmlAccessorType(XmlAccessType.FIELD)
42
@XmlType(name = "FindingDetailsType", propOrder = {
43
    "fullmatch",
44
    "matchLists",
45
    "revision"
46
})
47
public class FindingDetailsType
48
    implements Serializable
49
{
50
 
51
    private final static long serialVersionUID = 19800606L;
52
    @XmlElement(required = true)
53
    protected GroupMatchListType fullmatch;
54
    @XmlElement(name = "matchList")
55
    protected List<GroupMatchListType> matchLists;
56
    @XmlElement(required = true)
57
    protected RevisionType revision;
58
 
59
    /**
60
     * Gets the value of the fullmatch property.
61
     *
62
     * @return
63
     *     possible object is
64
     *     {@link GroupMatchListType }
65
     *
66
     */
67
    public GroupMatchListType getFullmatch() {
68
        return fullmatch;
69
    }
70
 
71
    /**
72
     * Sets the value of the fullmatch property.
73
     *
74
     * @param value
75
     *     allowed object is
76
     *     {@link GroupMatchListType }
77
     *
78
     */
79
    public void setFullmatch(GroupMatchListType value) {
80
        this.fullmatch = value;
81
    }
82
 
83
    /**
84
     * Gets the value of the matchLists property.
85
     *
86
     * <p>
87
     * This accessor method returns a reference to the live list,
88
     * not a snapshot. Therefore any modification you make to the
89
     * returned list will be present inside the JAXB object.
90
     * This is why there is not a <CODE>set</CODE> method for the matchLists property.
91
     *
92
     * <p>
93
     * For example, to add a new item, do as follows:
94
     * <pre>
95
     *    getMatchLists().add(newItem);
96
     * </pre>
97
     *
98
     *
99
     * <p>
100
     * Objects of the following type(s) are allowed in the list
101
     * {@link GroupMatchListType }
102
     *
103
     *
104
     */
105
    public List<GroupMatchListType> getMatchLists() {
106
        if (matchLists == null) {
107
            matchLists = new ArrayList<GroupMatchListType>();
108
        }
109
        return this.matchLists;
110
    }
111
 
112
    /**
113
     * Gets the value of the revision property.
114
     *
115
     * @return
116
     *     possible object is
117
     *     {@link RevisionType }
118
     *
119
     */
120
    public RevisionType getRevision() {
121
        return revision;
122
    }
123
 
124
    /**
125
     * Sets the value of the revision property.
126
     *
127
     * @param value
128
     *     allowed object is
129
     *     {@link RevisionType }
130
     *
131
     */
132
    public void setRevision(RevisionType value) {
133
        this.revision = value;
134
    }
135
 
136
}