This project has retired. For details please refer to its Attic page.
Coverage Report
Coverage Report - org.apache.ws.scout.model.uddi.v2.FindRelatedBusinesses
 
Classes in this File Line Coverage Branch Coverage Complexity
FindRelatedBusinesses
0%
0/16
N/A
1
 
 1  
 //
 2  
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
 3  
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 4  
 // Any modifications to this file will be lost upon recompilation of the source schema. 
 5  
 // Generated on: 2009.07.19 at 09:49:41 PM CDT 
 6  
 //
 7  
 
 8  
 
 9  
 package org.apache.ws.scout.model.uddi.v2;
 10  
 
 11  
 import javax.xml.bind.annotation.XmlAccessType;
 12  
 import javax.xml.bind.annotation.XmlAccessorType;
 13  
 import javax.xml.bind.annotation.XmlAttribute;
 14  
 import javax.xml.bind.annotation.XmlElement;
 15  
 import javax.xml.bind.annotation.XmlType;
 16  
 
 17  
 
 18  
 /**
 19  
  * <p>Java class for find_relatedBusinesses complex type.
 20  
  * 
 21  
  * <p>The following schema fragment specifies the expected content contained within this class.
 22  
  * 
 23  
  * <pre>
 24  
  * &lt;complexType name="find_relatedBusinesses">
 25  
  *   &lt;complexContent>
 26  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 27  
  *       &lt;sequence>
 28  
  *         &lt;element ref="{urn:uddi-org:api_v2}findQualifiers" minOccurs="0"/>
 29  
  *         &lt;element ref="{urn:uddi-org:api_v2}businessKey"/>
 30  
  *         &lt;element ref="{urn:uddi-org:api_v2}keyedReference" minOccurs="0"/>
 31  
  *       &lt;/sequence>
 32  
  *       &lt;attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 33  
  *       &lt;attribute name="maxRows" type="{http://www.w3.org/2001/XMLSchema}int" />
 34  
  *     &lt;/restriction>
 35  
  *   &lt;/complexContent>
 36  
  * &lt;/complexType>
 37  
  * </pre>
 38  
  * 
 39  
  * 
 40  
  */
 41  
 @XmlAccessorType(XmlAccessType.FIELD)
 42  
 @XmlType(name = "find_relatedBusinesses", propOrder = {
 43  
     "findQualifiers",
 44  
     "businessKey",
 45  
     "keyedReference"
 46  
 })
 47  0
 public class FindRelatedBusinesses {
 48  
 
 49  
     protected FindQualifiers findQualifiers;
 50  
     @XmlElement(required = true)
 51  
     protected String businessKey;
 52  
     protected KeyedReference keyedReference;
 53  
     @XmlAttribute(required = true)
 54  
     protected String generic;
 55  
     @XmlAttribute
 56  
     protected Integer maxRows;
 57  
 
 58  
     /**
 59  
      * Gets the value of the findQualifiers property.
 60  
      * 
 61  
      * @return
 62  
      *     possible object is
 63  
      *     {@link FindQualifiers }
 64  
      *     
 65  
      */
 66  
     public FindQualifiers getFindQualifiers() {
 67  0
         return findQualifiers;
 68  
     }
 69  
 
 70  
     /**
 71  
      * Sets the value of the findQualifiers property.
 72  
      * 
 73  
      * @param value
 74  
      *     allowed object is
 75  
      *     {@link FindQualifiers }
 76  
      *     
 77  
      */
 78  
     public void setFindQualifiers(FindQualifiers value) {
 79  0
         this.findQualifiers = value;
 80  0
     }
 81  
 
 82  
     /**
 83  
      * Gets the value of the businessKey property.
 84  
      * 
 85  
      * @return
 86  
      *     possible object is
 87  
      *     {@link String }
 88  
      *     
 89  
      */
 90  
     public String getBusinessKey() {
 91  0
         return businessKey;
 92  
     }
 93  
 
 94  
     /**
 95  
      * Sets the value of the businessKey property.
 96  
      * 
 97  
      * @param value
 98  
      *     allowed object is
 99  
      *     {@link String }
 100  
      *     
 101  
      */
 102  
     public void setBusinessKey(String value) {
 103  0
         this.businessKey = value;
 104  0
     }
 105  
 
 106  
     /**
 107  
      * Gets the value of the keyedReference property.
 108  
      * 
 109  
      * @return
 110  
      *     possible object is
 111  
      *     {@link KeyedReference }
 112  
      *     
 113  
      */
 114  
     public KeyedReference getKeyedReference() {
 115  0
         return keyedReference;
 116  
     }
 117  
 
 118  
     /**
 119  
      * Sets the value of the keyedReference property.
 120  
      * 
 121  
      * @param value
 122  
      *     allowed object is
 123  
      *     {@link KeyedReference }
 124  
      *     
 125  
      */
 126  
     public void setKeyedReference(KeyedReference value) {
 127  0
         this.keyedReference = value;
 128  0
     }
 129  
 
 130  
     /**
 131  
      * Gets the value of the generic property.
 132  
      * 
 133  
      * @return
 134  
      *     possible object is
 135  
      *     {@link String }
 136  
      *     
 137  
      */
 138  
     public String getGeneric() {
 139  0
         return generic;
 140  
     }
 141  
 
 142  
     /**
 143  
      * Sets the value of the generic property.
 144  
      * 
 145  
      * @param value
 146  
      *     allowed object is
 147  
      *     {@link String }
 148  
      *     
 149  
      */
 150  
     public void setGeneric(String value) {
 151  0
         this.generic = value;
 152  0
     }
 153  
 
 154  
     /**
 155  
      * Gets the value of the maxRows property.
 156  
      * 
 157  
      * @return
 158  
      *     possible object is
 159  
      *     {@link Integer }
 160  
      *     
 161  
      */
 162  
     public Integer getMaxRows() {
 163  0
         return maxRows;
 164  
     }
 165  
 
 166  
     /**
 167  
      * Sets the value of the maxRows property.
 168  
      * 
 169  
      * @param value
 170  
      *     allowed object is
 171  
      *     {@link Integer }
 172  
      *     
 173  
      */
 174  
     public void setMaxRows(Integer value) {
 175  0
         this.maxRows = value;
 176  0
     }
 177  
 
 178  
 }