This project has retired. For details please refer to its Attic page.
ListDescription 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  
23  import javax.xml.bind.annotation.XmlAccessType;
24  import javax.xml.bind.annotation.XmlAccessorType;
25  import javax.xml.bind.annotation.XmlTransient;
26  import javax.xml.bind.annotation.XmlType;
27  
28  
29  /**
30   * <p>Java class for listDescription complex type.
31   * 
32   * <p>The following schema fragment specifies the expected content contained within this class.
33   * 
34   * <pre>
35   * &lt;complexType name="listDescription">
36   *   &lt;complexContent>
37   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
38   *       &lt;sequence>
39   *         &lt;element ref="{urn:uddi-org:api_v3}includeCount"/>
40   *         &lt;element ref="{urn:uddi-org:api_v3}actualCount"/>
41   *         &lt;element ref="{urn:uddi-org:api_v3}listHead"/>
42   *       &lt;/sequence>
43   *     &lt;/restriction>
44   *   &lt;/complexContent>
45   * &lt;/complexType>
46   * </pre>
47   * 
48   * 
49   */
50  @XmlAccessorType(XmlAccessType.FIELD)
51  @XmlType(name = "listDescription", propOrder = {
52      "includeCount",
53      "actualCount",
54      "listHead"
55  })
56  public class ListDescription implements Serializable{
57  	@XmlTransient
58  	private static final long serialVersionUID = 77138243591130431L;
59  
60  	protected int includeCount;
61      protected int actualCount;
62      protected int listHead;
63  
64      /**
65       * Gets the value of the includeCount property.
66       * 
67       */
68      public int getIncludeCount() {
69          return includeCount;
70      }
71  
72      /**
73       * Sets the value of the includeCount property.
74       * 
75       */
76      public void setIncludeCount(int value) {
77          this.includeCount = value;
78      }
79  
80      /**
81       * Gets the value of the actualCount property.
82       * 
83       */
84      public int getActualCount() {
85          return actualCount;
86      }
87  
88      /**
89       * Sets the value of the actualCount property.
90       * 
91       */
92      public void setActualCount(int value) {
93          this.actualCount = value;
94      }
95  
96      /**
97       * Gets the value of the listHead property.
98       * 
99       */
100     public int getListHead() {
101         return listHead;
102     }
103 
104     /**
105      * Sets the value of the listHead property.
106      * 
107      */
108     public void setListHead(int value) {
109         this.listHead = value;
110     }
111 
112 }