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

SyncSubscriptionDetailResponse.java

  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. import javax.xml.bind.annotation.XmlAccessType;
  19. import javax.xml.bind.annotation.XmlAccessorType;
  20. import javax.xml.bind.annotation.XmlElement;
  21. import javax.xml.bind.annotation.XmlType;


  22. /**
  23.  * <p>Java class for syncSubscriptionDetailResponse complex type.
  24.  *
  25.  * <p>The following schema fragment specifies the expected content contained within this class.
  26.  *
  27.  * <pre>
  28.  * &lt;complexType name="syncSubscriptionDetailResponse">
  29.  *   &lt;complexContent>
  30.  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  31.  *       &lt;sequence>
  32.  *         &lt;element name="syncSubscriptionDetail" type="{urn:juddi-apache-org:api_v3}syncSubscriptionDetail"/>
  33.  *       &lt;/sequence>
  34.  *     &lt;/restriction>
  35.  *   &lt;/complexContent>
  36.  * &lt;/complexType>
  37.  * </pre>
  38.  *
  39.  *
  40.  */
  41. @XmlAccessorType(XmlAccessType.FIELD)
  42. @XmlType(name = "syncSubscriptionDetailResponse", propOrder = {
  43.     "syncSubscriptionDetail"
  44. })
  45. public class SyncSubscriptionDetailResponse {

  46.     @XmlElement(required = true, nillable = true)
  47.     protected SyncSubscriptionDetail syncSubscriptionDetail;

  48.     /**
  49.      * Gets the value of the syncSubscriptionDetail property.
  50.      *
  51.      * @return
  52.      *     possible object is
  53.      *     {@link SyncSubscriptionDetail }
  54.      *    
  55.      */
  56.     public SyncSubscriptionDetail getSyncSubscriptionDetail() {
  57.         return syncSubscriptionDetail;
  58.     }

  59.     /**
  60.      * Sets the value of the syncSubscriptionDetail property.
  61.      *
  62.      * @param value
  63.      *     allowed object is
  64.      *     {@link SyncSubscriptionDetail }
  65.      *    
  66.      */
  67.     public void setSyncSubscriptionDetail(SyncSubscriptionDetail value) {
  68.         this.syncSubscriptionDetail = value;
  69.     }

  70. }