1 /*
2 * Copyright 2015 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 package org.apache.juddi.api_v3;
17
18 import javax.xml.bind.annotation.XmlAccessType;
19 import javax.xml.bind.annotation.XmlAccessorType;
20 import javax.xml.bind.annotation.XmlType;
21
22
23 /**
24 * <p>Java class for getFailedReplicationChangeRecordsMessageRequest complex type.
25 *
26 * <p>The following schema fragment specifies the expected content contained within this class.
27 *
28 * <pre>
29 * <complexType name="getFailedReplicationChangeRecordsMessageRequest">
30 * <complexContent>
31 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
32 * <sequence>
33 * <element name="authInfo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
34 * <element name="maxRecords" type="{http://www.w3.org/2001/XMLSchema}long"/>
35 * <element name="offset" type="{http://www.w3.org/2001/XMLSchema}long"/>
36 * </sequence>
37 * </restriction>
38 * </complexContent>
39 * </complexType>
40 * </pre>
41 *
42 *
43 */
44 @XmlAccessorType(XmlAccessType.FIELD)
45 @XmlType(name = "getFailedReplicationChangeRecordsMessageRequest", propOrder = {
46 "authInfo",
47 "maxRecords",
48 "offset"
49 })
50 public class GetFailedReplicationChangeRecordsMessageRequest {
51
52 protected String authInfo;
53 protected long maxRecords;
54 protected long offset;
55
56 /**
57 * Gets the value of the authInfo property.
58 *
59 * @return
60 * possible object is
61 * {@link String }
62 *
63 */
64 public String getAuthInfo() {
65 return authInfo;
66 }
67
68 /**
69 * Sets the value of the authInfo property.
70 *
71 * @param value
72 * allowed object is
73 * {@link String }
74 *
75 */
76 public void setAuthInfo(String value) {
77 this.authInfo = value;
78 }
79
80 /**
81 * Gets the value of the maxRecords property.
82 *
83 */
84 public long getMaxRecords() {
85 return maxRecords;
86 }
87
88 /**
89 * Sets the value of the maxRecords property.
90 *
91 */
92 public void setMaxRecords(long value) {
93 this.maxRecords = value;
94 }
95
96 /**
97 * Gets the value of the offset property.
98 *
99 */
100 public long getOffset() {
101 return offset;
102 }
103
104 /**
105 * Sets the value of the offset property.
106 *
107 */
108 public void setOffset(long value) {
109 this.offset = value;
110 }
111
112 }