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.sub_v3;
20
21 import java.io.Serializable;
22 import java.util.ArrayList;
23 import java.util.List;
24 import javax.xml.bind.annotation.XmlAccessType;
25 import javax.xml.bind.annotation.XmlAccessorType;
26 import javax.xml.bind.annotation.XmlTransient;
27 import javax.xml.bind.annotation.XmlType;
28
29
30 /**
31 * <p>Java class for subscriptions complex type.
32 *
33 * <p>The following schema fragment specifies the expected content contained within this class.
34 *
35 * <pre>
36 * <complexType name="subscriptions">
37 * <complexContent>
38 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
39 * <sequence>
40 * <element ref="{urn:uddi-org:sub_v3}subscription" maxOccurs="unbounded" minOccurs="0"/>
41 * </sequence>
42 * </restriction>
43 * </complexContent>
44 * </complexType>
45 * </pre>
46 *
47 *
48 */
49 @XmlAccessorType(XmlAccessType.FIELD)
50 @XmlType(name = "subscriptions", propOrder = {
51 "subscription"
52 })
53 public class Subscriptions implements Serializable{
54 @XmlTransient
55 private static final long serialVersionUID = 8633354170434626816L;
56 protected List<Subscription> subscription;
57
58 /**
59 * Gets the value of the subscription property.
60 *
61 * <p>
62 * This accessor method returns a reference to the live list,
63 * not a snapshot. Therefore any modification you make to the
64 * returned list will be present inside the JAXB object.
65 * This is why there is not a <CODE>set</CODE> method for the subscription property.
66 *
67 * <p>
68 * For example, to add a new item, do as follows:
69 * <pre>
70 * getSubscription().add(newItem);
71 * </pre>
72 *
73 *
74 * <p>
75 * Objects of the following type(s) are allowed in the list
76 * {@link Subscription }
77 *
78 *
79 */
80 public List<Subscription> getSubscription() {
81 if (subscription == null) {
82 subscription = new ArrayList<Subscription>();
83 }
84 return this.subscription;
85 }
86
87 }