1 //
2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661
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.07.19 at 09:49:41 PM CDT
6 //
7
8
9 package org.apache.ws.scout.model.uddi.v2;
10
11 import java.util.ArrayList;
12 import java.util.List;
13
14 import javax.xml.bind.annotation.XmlAccessType;
15 import javax.xml.bind.annotation.XmlAccessorType;
16 import javax.xml.bind.annotation.XmlAttribute;
17 import javax.xml.bind.annotation.XmlElement;
18 import javax.xml.bind.annotation.XmlType;
19
20
21 /**
22 * <p>Java class for assertionStatusReport complex type.
23 *
24 * <p>The following schema fragment specifies the expected content contained within this class.
25 *
26 * <pre>
27 * <complexType name="assertionStatusReport">
28 * <complexContent>
29 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30 * <sequence>
31 * <element ref="{urn:uddi-org:api_v2}assertionStatusItem" maxOccurs="unbounded" minOccurs="0"/>
32 * </sequence>
33 * <attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
34 * <attribute name="operator" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
35 * </restriction>
36 * </complexContent>
37 * </complexType>
38 * </pre>
39 *
40 *
41 */
42 @XmlAccessorType(XmlAccessType.FIELD)
43 @XmlType(name = "assertionStatusReport", propOrder = {
44 "assertionStatusItem"
45 })
46 public class AssertionStatusReport {
47
48 @XmlElement(required = true)
49 protected List<AssertionStatusItem> assertionStatusItem;
50 @XmlAttribute(required = true)
51 protected String generic;
52 @XmlAttribute(required = true)
53 protected String operator;
54
55 /**
56 * Gets the value of the assertionStatusItem property.
57 *
58 * <p>
59 * This accessor method returns a reference to the live list,
60 * not a snapshot. Therefore any modification you make to the
61 * returned list will be present inside the JAXB object.
62 * This is why there is not a <CODE>set</CODE> method for the assertionStatusItem property.
63 *
64 * <p>
65 * For example, to add a new item, do as follows:
66 * <pre>
67 * getAssertionStatusItem().add(newItem);
68 * </pre>
69 *
70 *
71 * <p>
72 * Objects of the following type(s) are allowed in the list
73 * {@link AssertionStatusItem }
74 *
75 *
76 */
77 public List<AssertionStatusItem> getAssertionStatusItem() {
78 if (assertionStatusItem == null) {
79 assertionStatusItem = new ArrayList<AssertionStatusItem>();
80 }
81 return this.assertionStatusItem;
82 }
83
84 /**
85 * Gets the value of the generic property.
86 *
87 * @return
88 * possible object is
89 * {@link String }
90 *
91 */
92 public String getGeneric() {
93 return generic;
94 }
95
96 /**
97 * Sets the value of the generic property.
98 *
99 * @param value
100 * allowed object is
101 * {@link String }
102 *
103 */
104 public void setGeneric(String value) {
105 this.generic = value;
106 }
107
108 /**
109 * Gets the value of the operator property.
110 *
111 * @return
112 * possible object is
113 * {@link String }
114 *
115 */
116 public String getOperator() {
117 return operator;
118 }
119
120 /**
121 * Sets the value of the operator property.
122 *
123 * @param value
124 * allowed object is
125 * {@link String }
126 *
127 */
128 public void setOperator(String value) {
129 this.operator = value;
130 }
131
132 }