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
23 import javax.xml.bind.annotation.XmlAccessType;
24 import javax.xml.bind.annotation.XmlAccessorType;
25 import javax.xml.bind.annotation.XmlElement;
26 import javax.xml.bind.annotation.XmlRootElement;
27 import javax.xml.bind.annotation.XmlTransient;
28 import javax.xml.bind.annotation.XmlType;
29
30
31 /**
32 * <p>Java class for anonymous complex type.
33 *
34 * <p>The following schema fragment specifies the expected content contained within this class.
35 *
36 * <pre>
37 * <complexType>
38 * <complexContent>
39 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
40 * <sequence>
41 * <element name="failedChangeID" type="{urn:uddi-org:repl_v3}changeRecordID_type"/>
42 * </sequence>
43 * </restriction>
44 * </complexContent>
45 * </complexType>
46 * </pre>
47 *
48 *
49 */
50 @XmlAccessorType(XmlAccessType.FIELD)
51 @XmlType(name = "", propOrder = {
52 "failedChangeID"
53 })
54 @XmlRootElement(name = "changeRecordConditionFailed")
55 public class ChangeRecordConditionFailed implements Serializable{
56 @XmlTransient
57 private static final long serialVersionUID = 7067612338047869508L;
58 @XmlElement(required = true)
59 protected ChangeRecordIDType failedChangeID;
60
61 /**
62 * Gets the value of the failedChangeID property.
63 *
64 * @return
65 * possible object is
66 * {@link ChangeRecordIDType }
67 *
68 */
69 public ChangeRecordIDType getFailedChangeID() {
70 return failedChangeID;
71 }
72
73 /**
74 * Sets the value of the failedChangeID property.
75 *
76 * @param value
77 * allowed object is
78 * {@link ChangeRecordIDType }
79 *
80 */
81 public void setFailedChangeID(ChangeRecordIDType value) {
82 this.failedChangeID = value;
83 }
84
85 }