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