This project has retired. For details please refer to its Attic page.
AddPublisherAssertions xref
View Javadoc
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.api_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.XmlElement;
27  import javax.xml.bind.annotation.XmlTransient;
28  import javax.xml.bind.annotation.XmlType;
29  
30  
31  /**
32   * <p>Java class for add_publisherAssertions complex type.
33   * 
34   * <p>The following schema fragment specifies the expected content contained within this class.
35   * 
36   * <pre>
37   * &lt;complexType name="add_publisherAssertions">
38   *   &lt;complexContent>
39   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
40   *       &lt;sequence>
41   *         &lt;element ref="{urn:uddi-org:api_v3}authInfo" minOccurs="0"/>
42   *         &lt;element ref="{urn:uddi-org:api_v3}publisherAssertion" maxOccurs="unbounded"/>
43   *       &lt;/sequence>
44   *     &lt;/restriction>
45   *   &lt;/complexContent>
46   * &lt;/complexType>
47   * </pre>
48   * 
49   * 
50   */
51  @XmlAccessorType(XmlAccessType.FIELD)
52  @XmlType(name = "add_publisherAssertions", propOrder = {
53      "authInfo",
54      "publisherAssertion"
55  })
56  public class AddPublisherAssertions implements Serializable{
57  
58  	@XmlTransient
59  	private static final long serialVersionUID = 3903490571086430295L;
60  
61  	protected String authInfo;
62      @XmlElement(required = true)
63      protected List<PublisherAssertion> publisherAssertion;
64  
65      /**
66       * Gets the value of the authInfo property.
67       * 
68       * @return
69       *     possible object is
70       *     {@link String }
71       *     
72       */
73      public String getAuthInfo() {
74          return authInfo;
75      }
76  
77      /**
78       * Sets the value of the authInfo property.
79       * 
80       * @param value
81       *     allowed object is
82       *     {@link String }
83       *     
84       */
85      public void setAuthInfo(String value) {
86          this.authInfo = value;
87      }
88  
89      /**
90       * Gets the value of the publisherAssertion property.
91       * 
92       * <p>
93       * This accessor method returns a reference to the live list,
94       * not a snapshot. Therefore any modification you make to the
95       * returned list will be present inside the JAXB object.
96       * This is why there is not a <CODE>set</CODE> method for the publisherAssertion property.
97       * 
98       * <p>
99       * For example, to add a new item, do as follows:
100      * <pre>
101      *    getPublisherAssertion().add(newItem);
102      * </pre>
103      * 
104      * 
105      * <p>
106      * Objects of the following type(s) are allowed in the list
107      * {@link PublisherAssertion }
108      * 
109      * 
110      */
111     public List<PublisherAssertion> getPublisherAssertion() {
112         if (publisherAssertion == null) {
113             publisherAssertion = new ArrayList<PublisherAssertion>();
114         }
115         return this.publisherAssertion;
116     }
117 
118 }