This project has retired. For details please refer to its Attic page.
ChangeRecordNewDataConditional.java

ChangeRecordNewDataConditional.java

  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. package org.uddi.repl_v3;

  18. import java.io.Serializable;

  19. import javax.xml.bind.annotation.XmlAccessType;
  20. import javax.xml.bind.annotation.XmlAccessorType;
  21. import javax.xml.bind.annotation.XmlElement;
  22. import javax.xml.bind.annotation.XmlRootElement;
  23. import javax.xml.bind.annotation.XmlTransient;
  24. import javax.xml.bind.annotation.XmlType;


  25. /**
  26.  * <p>Java class for anonymous complex type.
  27.  *
  28.  * <p>The following schema fragment specifies the expected content contained within this class.
  29.  *
  30.  * <pre>
  31.  * &lt;complexType>
  32.  *   &lt;complexContent>
  33.  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  34.  *       &lt;sequence>
  35.  *         &lt;element ref="{urn:uddi-org:repl_v3}changeRecordNewData"/>
  36.  *       &lt;/sequence>
  37.  *     &lt;/restriction>
  38.  *   &lt;/complexContent>
  39.  * &lt;/complexType>
  40.  * </pre>
  41.  *
  42.  *
  43.  */
  44. @XmlAccessorType(XmlAccessType.FIELD)
  45. @XmlType(name = "", propOrder = {
  46.     "changeRecordNewData"
  47. })
  48. @XmlRootElement(name = "changeRecordNewDataConditional")
  49. public class ChangeRecordNewDataConditional implements Serializable{
  50.     @XmlTransient
  51.     private static final long serialVersionUID = -5631615951563463814L;
  52.     @XmlElement(required = true)
  53.     protected ChangeRecordNewData changeRecordNewData;

  54.     /**
  55.      * Gets the value of the changeRecordNewData property.
  56.      *
  57.      * @return
  58.      *     possible object is
  59.      *     {@link ChangeRecordNewData }
  60.      *    
  61.      */
  62.     public ChangeRecordNewData getChangeRecordNewData() {
  63.         return changeRecordNewData;
  64.     }

  65.     /**
  66.      * Sets the value of the changeRecordNewData property.
  67.      *
  68.      * @param value
  69.      *     allowed object is
  70.      *     {@link ChangeRecordNewData }
  71.      *    
  72.      */
  73.     public void setChangeRecordNewData(ChangeRecordNewData value) {
  74.         this.changeRecordNewData = value;
  75.     }

  76. }