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 set_publisherAssertions complex type.
23 *
24 * <p>The following schema fragment specifies the expected content contained within this class.
25 *
26 * <pre>
27 * <complexType name="set_publisherAssertions">
28 * <complexContent>
29 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30 * <sequence>
31 * <element ref="{urn:uddi-org:api_v2}authInfo"/>
32 * <element ref="{urn:uddi-org:api_v2}publisherAssertion" maxOccurs="unbounded" minOccurs="0"/>
33 * </sequence>
34 * <attribute name="generic" 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 = "set_publisherAssertions", propOrder = {
44 "authInfo",
45 "publisherAssertion"
46 })
47 public class SetPublisherAssertions {
48
49 @XmlElement(required = true)
50 protected String authInfo;
51 protected List<PublisherAssertion> publisherAssertion;
52 @XmlAttribute(required = true)
53 protected String generic;
54
55 /**
56 * Gets the value of the authInfo property.
57 *
58 * @return
59 * possible object is
60 * {@link String }
61 *
62 */
63 public String getAuthInfo() {
64 return authInfo;
65 }
66
67 /**
68 * Sets the value of the authInfo property.
69 *
70 * @param value
71 * allowed object is
72 * {@link String }
73 *
74 */
75 public void setAuthInfo(String value) {
76 this.authInfo = value;
77 }
78
79 /**
80 * Gets the value of the publisherAssertion property.
81 *
82 * <p>
83 * This accessor method returns a reference to the live list,
84 * not a snapshot. Therefore any modification you make to the
85 * returned list will be present inside the JAXB object.
86 * This is why there is not a <CODE>set</CODE> method for the publisherAssertion property.
87 *
88 * <p>
89 * For example, to add a new item, do as follows:
90 * <pre>
91 * getPublisherAssertion().add(newItem);
92 * </pre>
93 *
94 *
95 * <p>
96 * Objects of the following type(s) are allowed in the list
97 * {@link PublisherAssertion }
98 *
99 *
100 */
101 public List<PublisherAssertion> getPublisherAssertion() {
102 if (publisherAssertion == null) {
103 publisherAssertion = new ArrayList<PublisherAssertion>();
104 }
105 return this.publisherAssertion;
106 }
107
108 /**
109 * Gets the value of the generic property.
110 *
111 * @return
112 * possible object is
113 * {@link String }
114 *
115 */
116 public String getGeneric() {
117 return generic;
118 }
119
120 /**
121 * Sets the value of the generic property.
122 *
123 * @param value
124 * allowed object is
125 * {@link String }
126 *
127 */
128 public void setGeneric(String value) {
129 this.generic = value;
130 }
131
132 }