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 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.XmlElement;
15 import javax.xml.bind.annotation.XmlType;
16
17
18 /**
19 * <p>Java class for get_publisherAssertions complex type.
20 *
21 * <p>The following schema fragment specifies the expected content contained within this class.
22 *
23 * <pre>
24 * <complexType name="get_publisherAssertions">
25 * <complexContent>
26 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27 * <sequence>
28 * <element ref="{urn:uddi-org:api_v2}authInfo"/>
29 * </sequence>
30 * <attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
31 * </restriction>
32 * </complexContent>
33 * </complexType>
34 * </pre>
35 *
36 *
37 */
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "get_publisherAssertions", propOrder = {
40 "authInfo"
41 })
42 public class GetPublisherAssertions {
43
44 @XmlElement(required = true)
45 protected String authInfo;
46 @XmlAttribute(required = true)
47 protected String generic;
48
49 /**
50 * Gets the value of the authInfo property.
51 *
52 * @return
53 * possible object is
54 * {@link String }
55 *
56 */
57 public String getAuthInfo() {
58 return authInfo;
59 }
60
61 /**
62 * Sets the value of the authInfo property.
63 *
64 * @param value
65 * allowed object is
66 * {@link String }
67 *
68 */
69 public void setAuthInfo(String value) {
70 this.authInfo = value;
71 }
72
73 /**
74 * Gets the value of the generic property.
75 *
76 * @return
77 * possible object is
78 * {@link String }
79 *
80 */
81 public String getGeneric() {
82 return generic;
83 }
84
85 /**
86 * Sets the value of the generic property.
87 *
88 * @param value
89 * allowed object is
90 * {@link String }
91 *
92 */
93 public void setGeneric(String value) {
94 this.generic = value;
95 }
96
97 }