This project has retired. For details please refer to its Attic page.
GetEntityHistoryMessageRequest xref
View Javadoc
1   /*
2    * Copyright 2001-2009 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  package org.apache.juddi.api_v3;
18  
19  import javax.xml.bind.annotation.XmlAccessType;
20  import javax.xml.bind.annotation.XmlAccessorType;
21  import javax.xml.bind.annotation.XmlType;
22  
23  
24  /**
25   * <p>Java class for getEntityHistoryMessageRequest complex type.
26   * 
27   * <p>The following schema fragment specifies the expected content contained within this class.
28   * 
29   * <pre>
30   * &lt;complexType name="getEntityHistoryMessageRequest">
31   *   &lt;complexContent>
32   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
33   *       &lt;sequence>
34   *         &lt;element name="authInfo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
35   *         &lt;element name="entityKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
36   *         &lt;element name="maxRecords" type="{http://www.w3.org/2001/XMLSchema}long"/>
37   *         &lt;element name="offset" type="{http://www.w3.org/2001/XMLSchema}long"/>
38   *       &lt;/sequence>
39   *     &lt;/restriction>
40   *   &lt;/complexContent>
41   * &lt;/complexType>
42   * </pre>
43   * 
44   * 
45   */
46  @XmlAccessorType(XmlAccessType.FIELD)
47  @XmlType(name = "getEntityHistoryMessageRequest", propOrder = {
48      "authInfo",
49      "entityKey",
50      "maxRecords",
51      "offset"
52  })
53  public class GetEntityHistoryMessageRequest {
54  
55      protected String authInfo;
56      protected String entityKey;
57      protected long maxRecords;
58      protected long offset;
59  
60      /**
61       * Gets the value of the authInfo property.
62       * 
63       * @return
64       *     possible object is
65       *     {@link String }
66       *     
67       */
68      public String getAuthInfo() {
69          return authInfo;
70      }
71  
72      /**
73       * Sets the value of the authInfo property.
74       * 
75       * @param value
76       *     allowed object is
77       *     {@link String }
78       *     
79       */
80      public void setAuthInfo(String value) {
81          this.authInfo = value;
82      }
83  
84      /**
85       * Gets the value of the entityKey property.
86       * 
87       * @return
88       *     possible object is
89       *     {@link String }
90       *     
91       */
92      public String getEntityKey() {
93          return entityKey;
94      }
95  
96      /**
97       * Sets the value of the entityKey property.
98       * 
99       * @param value
100      *     allowed object is
101      *     {@link String }
102      *     
103      */
104     public void setEntityKey(String value) {
105         this.entityKey = value;
106     }
107 
108     /**
109      * Gets the value of the maxRecords property.
110      * 
111      */
112     public long getMaxRecords() {
113         return maxRecords;
114     }
115 
116     /**
117      * Sets the value of the maxRecords property.
118      * 
119      */
120     public void setMaxRecords(long value) {
121         this.maxRecords = value;
122     }
123 
124     /**
125      * Gets the value of the offset property.
126      * 
127      */
128     public long getOffset() {
129         return offset;
130     }
131 
132     /**
133      * Sets the value of the offset property.
134      * 
135      */
136     public void setOffset(long value) {
137         this.offset = value;
138     }
139 
140 }