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

FindBinding.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.api_v2;

  18. import javax.xml.bind.annotation.XmlAccessType;
  19. import javax.xml.bind.annotation.XmlAccessorType;
  20. import javax.xml.bind.annotation.XmlAttribute;
  21. import javax.xml.bind.annotation.XmlElement;
  22. import javax.xml.bind.annotation.XmlType;


  23. /**
  24.  * <p>Java class for find_binding complex type.
  25.  *
  26.  * <p>The following schema fragment specifies the expected content contained within this class.
  27.  *
  28.  * <pre>
  29.  * &lt;complexType name="find_binding">
  30.  *   &lt;complexContent>
  31.  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  32.  *       &lt;sequence>
  33.  *         &lt;element ref="{urn:uddi-org:api_v2}findQualifiers" minOccurs="0"/>
  34.  *         &lt;element ref="{urn:uddi-org:api_v2}tModelBag"/>
  35.  *       &lt;/sequence>
  36.  *       &lt;attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
  37.  *       &lt;attribute name="maxRows" type="{http://www.w3.org/2001/XMLSchema}int" />
  38.  *       &lt;attribute name="serviceKey" use="required" type="{urn:uddi-org:api_v2}serviceKey" />
  39.  *     &lt;/restriction>
  40.  *   &lt;/complexContent>
  41.  * &lt;/complexType>
  42.  * </pre>
  43.  *
  44.  *
  45.  */
  46. @XmlAccessorType(XmlAccessType.FIELD)
  47. @XmlType(name = "find_binding", propOrder = {
  48.     "findQualifiers",
  49.     "tModelBag"
  50. })
  51. public class FindBinding {

  52.     protected FindQualifiers findQualifiers;
  53.     @XmlElement(required = true)
  54.     protected TModelBag tModelBag;
  55.     @XmlAttribute(name = "generic", required = true)
  56.     protected String generic="2.0";
  57.     @XmlAttribute(name = "maxRows")
  58.     protected Integer maxRows;
  59.     @XmlAttribute(name = "serviceKey", required = true)
  60.     protected String serviceKey;

  61.     /**
  62.      * Gets the value of the findQualifiers property.
  63.      *
  64.      * @return
  65.      *     possible object is
  66.      *     {@link FindQualifiers }
  67.      *    
  68.      */
  69.     public FindQualifiers getFindQualifiers() {
  70.         return findQualifiers;
  71.     }

  72.     /**
  73.      * Sets the value of the findQualifiers property.
  74.      *
  75.      * @param value
  76.      *     allowed object is
  77.      *     {@link FindQualifiers }
  78.      *    
  79.      */
  80.     public void setFindQualifiers(FindQualifiers value) {
  81.         this.findQualifiers = value;
  82.     }

  83.     /**
  84.      * Gets the value of the tModelBag property.
  85.      *
  86.      * @return
  87.      *     possible object is
  88.      *     {@link TModelBag }
  89.      *    
  90.      */
  91.     public TModelBag getTModelBag() {
  92.         return tModelBag;
  93.     }

  94.     /**
  95.      * Sets the value of the tModelBag property.
  96.      *
  97.      * @param value
  98.      *     allowed object is
  99.      *     {@link TModelBag }
  100.      *    
  101.      */
  102.     public void setTModelBag(TModelBag value) {
  103.         this.tModelBag = value;
  104.     }

  105.     /**
  106.      * Gets the value of the generic property.
  107.      *
  108.      * @return
  109.      *     possible object is
  110.      *     {@link String }
  111.      *    
  112.      */
  113.     public String getGeneric() {
  114.         return generic;
  115.     }

  116.     /**
  117.      * Sets the value of the generic property.
  118.      *
  119.      * @param value
  120.      *     allowed object is
  121.      *     {@link String }
  122.      *    
  123.      */
  124.     public void setGeneric(String value) {
  125.         this.generic = value;
  126.     }

  127.     /**
  128.      * Gets the value of the maxRows property.
  129.      *
  130.      * @return
  131.      *     possible object is
  132.      *     {@link Integer }
  133.      *    
  134.      */
  135.     public Integer getMaxRows() {
  136.         return maxRows;
  137.     }

  138.     /**
  139.      * Sets the value of the maxRows property.
  140.      *
  141.      * @param value
  142.      *     allowed object is
  143.      *     {@link Integer }
  144.      *    
  145.      */
  146.     public void setMaxRows(Integer value) {
  147.         this.maxRows = value;
  148.     }

  149.     /**
  150.      * Gets the value of the serviceKey property.
  151.      *
  152.      * @return
  153.      *     possible object is
  154.      *     {@link String }
  155.      *    
  156.      */
  157.     public String getServiceKey() {
  158.         return serviceKey;
  159.     }

  160.     /**
  161.      * Sets the value of the serviceKey property.
  162.      *
  163.      * @param value
  164.      *     allowed object is
  165.      *     {@link String }
  166.      *    
  167.      */
  168.     public void setServiceKey(String value) {
  169.         this.serviceKey = value;
  170.     }

  171. }