This project has retired. For details please refer to its Attic page.
ToSignatures 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.repl_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.XmlRootElement;
28  import javax.xml.bind.annotation.XmlTransient;
29  import javax.xml.bind.annotation.XmlType;
30  import org.w3._2000._09.xmldsig_.SignatureType;
31  
32  
33  /**
34   * <p>Java class for anonymous complex type.
35   * 
36   * <p>The following schema fragment specifies the expected content contained within this class.
37   * 
38   * <pre>
39   * &lt;complexType>
40   *   &lt;complexContent>
41   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
42   *       &lt;sequence>
43   *         &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}Signature" maxOccurs="unbounded" minOccurs="0"/>
44   *       &lt;/sequence>
45   *     &lt;/restriction>
46   *   &lt;/complexContent>
47   * &lt;/complexType>
48   * </pre>
49   * 
50   * 
51   */
52  @XmlAccessorType(XmlAccessType.FIELD)
53  @XmlType(name = "", propOrder = {
54      "signature"
55  })
56  @XmlRootElement(name = "toSignatures")
57  public class ToSignatures implements Serializable {
58  	@XmlTransient
59  	private static final long serialVersionUID = 194099743503164822L;
60  	@XmlElement(name = "Signature", namespace = "http://www.w3.org/2000/09/xmldsig#")
61      protected List<SignatureType> signature;
62  
63      /**
64       * Gets the value of the signature property.
65       * 
66       * <p>
67       * This accessor method returns a reference to the live list,
68       * not a snapshot. Therefore any modification you make to the
69       * returned list will be present inside the JAXB object.
70       * This is why there is not a <CODE>set</CODE> method for the signature property.
71       * 
72       * <p>
73       * For example, to add a new item, do as follows:
74       * <pre>
75       *    getSignature().add(newItem);
76       * </pre>
77       * 
78       * 
79       * <p>
80       * Objects of the following type(s) are allowed in the list
81       * {@link SignatureType }
82       * 
83       * 
84       */
85      public List<SignatureType> getSignature() {
86          if (signature == null) {
87              signature = new ArrayList<SignatureType>();
88          }
89          return this.signature;
90      }
91  
92  }