1 /*
2 * Copyright 2001-2008 The Apache Software Foundation.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16 */
17
18
19 package org.uddi.subr_v3;
20
21 import java.io.Serializable;
22
23 import javax.xml.bind.annotation.XmlAccessType;
24 import javax.xml.bind.annotation.XmlAccessorType;
25 import javax.xml.bind.annotation.XmlElement;
26 import javax.xml.bind.annotation.XmlRootElement;
27 import javax.xml.bind.annotation.XmlTransient;
28 import javax.xml.bind.annotation.XmlType;
29 import org.uddi.sub_v3.SubscriptionResultsList;
30
31
32 /**
33 * <p>Java class for notify_subscriptionListener complex type.
34 *
35 * <p>The following schema fragment specifies the expected content contained within this class.
36 *
37 * <pre>
38 * <complexType name="notify_subscriptionListener">
39 * <complexContent>
40 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
41 * <sequence>
42 * <element ref="{urn:uddi-org:api_v3}authInfo" minOccurs="0"/>
43 * <element ref="{urn:uddi-org:sub_v3}subscriptionResultsList"/>
44 * </sequence>
45 * </restriction>
46 * </complexContent>
47 * </complexType>
48 * </pre>
49 *
50 *
51 */
52 @XmlAccessorType(XmlAccessType.FIELD)
53 @XmlType(name = "notify_subscriptionListener", propOrder = {
54 "authInfo",
55 "subscriptionResultsList"
56 })
57 @XmlRootElement(name="notify_subscriptionListener")
58 public class NotifySubscriptionListener implements Serializable{
59 @XmlTransient
60 private static final long serialVersionUID = 4531235329051418025L;
61 @XmlElement(namespace = "urn:uddi-org:api_v3")
62 protected String authInfo;
63 @XmlElement(namespace = "urn:uddi-org:sub_v3", required = true)
64 protected SubscriptionResultsList subscriptionResultsList;
65
66 /**
67 * Gets the value of the authInfo property.
68 *
69 * @return
70 * possible object is
71 * {@link String }
72 *
73 */
74 public String getAuthInfo() {
75 return authInfo;
76 }
77
78 /**
79 * Sets the value of the authInfo property.
80 *
81 * @param value
82 * allowed object is
83 * {@link String }
84 *
85 */
86 public void setAuthInfo(String value) {
87 this.authInfo = value;
88 }
89
90 /**
91 * Gets the value of the subscriptionResultsList property.
92 *
93 * @return
94 * possible object is
95 * {@link SubscriptionResultsList }
96 *
97 */
98 public SubscriptionResultsList getSubscriptionResultsList() {
99 return subscriptionResultsList;
100 }
101
102 /**
103 * Sets the value of the subscriptionResultsList property.
104 *
105 * @param value
106 * allowed object is
107 * {@link SubscriptionResultsList }
108 *
109 */
110 public void setSubscriptionResultsList(SubscriptionResultsList value) {
111 this.subscriptionResultsList = value;
112 }
113
114 }