This project has retired. For details please refer to its Attic page.
Coverage Report
Coverage Report - org.apache.ws.scout.model.uddi.v2.FindBusiness
 
Classes in this File Line Coverage Branch Coverage Complexity
FindBusiness
40%
10/25
50%
1/2
1.067
 
 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 java.util.ArrayList;
 12  
 import java.util.List;
 13  
 
 14  
 import javax.xml.bind.annotation.XmlAccessType;
 15  
 import javax.xml.bind.annotation.XmlAccessorType;
 16  
 import javax.xml.bind.annotation.XmlAttribute;
 17  
 import javax.xml.bind.annotation.XmlType;
 18  
 
 19  
 
 20  
 /**
 21  
  * <p>Java class for find_business complex type.
 22  
  * 
 23  
  * <p>The following schema fragment specifies the expected content contained within this class.
 24  
  * 
 25  
  * <pre>
 26  
  * &lt;complexType name="find_business">
 27  
  *   &lt;complexContent>
 28  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 29  
  *       &lt;sequence>
 30  
  *         &lt;element ref="{urn:uddi-org:api_v2}findQualifiers" minOccurs="0"/>
 31  
  *         &lt;element ref="{urn:uddi-org:api_v2}name" maxOccurs="unbounded" minOccurs="0"/>
 32  
  *         &lt;element ref="{urn:uddi-org:api_v2}identifierBag" minOccurs="0"/>
 33  
  *         &lt;element ref="{urn:uddi-org:api_v2}categoryBag" minOccurs="0"/>
 34  
  *         &lt;element ref="{urn:uddi-org:api_v2}tModelBag" minOccurs="0"/>
 35  
  *         &lt;element ref="{urn:uddi-org:api_v2}discoveryURLs" minOccurs="0"/>
 36  
  *       &lt;/sequence>
 37  
  *       &lt;attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 38  
  *       &lt;attribute name="maxRows" type="{http://www.w3.org/2001/XMLSchema}int" />
 39  
  *     &lt;/restriction>
 40  
  *   &lt;/complexContent>
 41  
  * &lt;/complexType>
 42  
  * </pre>
 43  
  * 
 44  
  * 
 45  
  */
 46  
 @XmlAccessorType(XmlAccessType.FIELD)
 47  
 @XmlType(name = "find_business", propOrder = {
 48  
     "findQualifiers",
 49  
     "name",
 50  
     "identifierBag",
 51  
     "categoryBag",
 52  
     "tModelBag",
 53  
     "discoveryURLs"
 54  
 })
 55  22
 public class FindBusiness {
 56  
 
 57  
     protected FindQualifiers findQualifiers;
 58  
     protected List<Name> name;
 59  
     protected IdentifierBag identifierBag;
 60  
     protected CategoryBag categoryBag;
 61  
     protected TModelBag tModelBag;
 62  
     protected DiscoveryURLs discoveryURLs;
 63  
     @XmlAttribute(required = true)
 64  
     protected String generic;
 65  
     @XmlAttribute
 66  
     protected Integer maxRows;
 67  
 
 68  
     /**
 69  
      * Gets the value of the findQualifiers property.
 70  
      * 
 71  
      * @return
 72  
      *     possible object is
 73  
      *     {@link FindQualifiers }
 74  
      *     
 75  
      */
 76  
     public FindQualifiers getFindQualifiers() {
 77  0
         return findQualifiers;
 78  
     }
 79  
 
 80  
     /**
 81  
      * Sets the value of the findQualifiers property.
 82  
      * 
 83  
      * @param value
 84  
      *     allowed object is
 85  
      *     {@link FindQualifiers }
 86  
      *     
 87  
      */
 88  
     public void setFindQualifiers(FindQualifiers value) {
 89  22
         this.findQualifiers = value;
 90  22
     }
 91  
 
 92  
     /**
 93  
      * Gets the value of the name property.
 94  
      * 
 95  
      * <p>
 96  
      * This accessor method returns a reference to the live list,
 97  
      * not a snapshot. Therefore any modification you make to the
 98  
      * returned list will be present inside the JAXB object.
 99  
      * This is why there is not a <CODE>set</CODE> method for the name property.
 100  
      * 
 101  
      * <p>
 102  
      * For example, to add a new item, do as follows:
 103  
      * <pre>
 104  
      *    getName().add(newItem);
 105  
      * </pre>
 106  
      * 
 107  
      * 
 108  
      * <p>
 109  
      * Objects of the following type(s) are allowed in the list
 110  
      * {@link Name }
 111  
      * 
 112  
      * 
 113  
      */
 114  
     public List<Name> getName() {
 115  22
         if (name == null) {
 116  22
             name = new ArrayList<Name>();
 117  
         }
 118  22
         return this.name;
 119  
     }
 120  
 
 121  
     /**
 122  
      * Gets the value of the identifierBag property.
 123  
      * 
 124  
      * @return
 125  
      *     possible object is
 126  
      *     {@link IdentifierBag }
 127  
      *     
 128  
      */
 129  
     public IdentifierBag getIdentifierBag() {
 130  0
         return identifierBag;
 131  
     }
 132  
 
 133  
     /**
 134  
      * Sets the value of the identifierBag property.
 135  
      * 
 136  
      * @param value
 137  
      *     allowed object is
 138  
      *     {@link IdentifierBag }
 139  
      *     
 140  
      */
 141  
     public void setIdentifierBag(IdentifierBag value) {
 142  0
         this.identifierBag = value;
 143  0
     }
 144  
 
 145  
     /**
 146  
      * Gets the value of the categoryBag property.
 147  
      * 
 148  
      * @return
 149  
      *     possible object is
 150  
      *     {@link CategoryBag }
 151  
      *     
 152  
      */
 153  
     public CategoryBag getCategoryBag() {
 154  0
         return categoryBag;
 155  
     }
 156  
 
 157  
     /**
 158  
      * Sets the value of the categoryBag property.
 159  
      * 
 160  
      * @param value
 161  
      *     allowed object is
 162  
      *     {@link CategoryBag }
 163  
      *     
 164  
      */
 165  
     public void setCategoryBag(CategoryBag value) {
 166  0
         this.categoryBag = value;
 167  0
     }
 168  
 
 169  
     /**
 170  
      * Gets the value of the tModelBag property.
 171  
      * 
 172  
      * @return
 173  
      *     possible object is
 174  
      *     {@link TModelBag }
 175  
      *     
 176  
      */
 177  
     public TModelBag getTModelBag() {
 178  0
         return tModelBag;
 179  
     }
 180  
 
 181  
     /**
 182  
      * Sets the value of the tModelBag property.
 183  
      * 
 184  
      * @param value
 185  
      *     allowed object is
 186  
      *     {@link TModelBag }
 187  
      *     
 188  
      */
 189  
     public void setTModelBag(TModelBag value) {
 190  22
         this.tModelBag = value;
 191  22
     }
 192  
 
 193  
     /**
 194  
      * Gets the value of the discoveryURLs property.
 195  
      * 
 196  
      * @return
 197  
      *     possible object is
 198  
      *     {@link DiscoveryURLs }
 199  
      *     
 200  
      */
 201  
     public DiscoveryURLs getDiscoveryURLs() {
 202  0
         return discoveryURLs;
 203  
     }
 204  
 
 205  
     /**
 206  
      * Sets the value of the discoveryURLs property.
 207  
      * 
 208  
      * @param value
 209  
      *     allowed object is
 210  
      *     {@link DiscoveryURLs }
 211  
      *     
 212  
      */
 213  
     public void setDiscoveryURLs(DiscoveryURLs value) {
 214  0
         this.discoveryURLs = value;
 215  0
     }
 216  
 
 217  
     /**
 218  
      * Gets the value of the generic property.
 219  
      * 
 220  
      * @return
 221  
      *     possible object is
 222  
      *     {@link String }
 223  
      *     
 224  
      */
 225  
     public String getGeneric() {
 226  0
         return generic;
 227  
     }
 228  
 
 229  
     /**
 230  
      * Sets the value of the generic property.
 231  
      * 
 232  
      * @param value
 233  
      *     allowed object is
 234  
      *     {@link String }
 235  
      *     
 236  
      */
 237  
     public void setGeneric(String value) {
 238  0
         this.generic = value;
 239  0
     }
 240  
 
 241  
     /**
 242  
      * Gets the value of the maxRows property.
 243  
      * 
 244  
      * @return
 245  
      *     possible object is
 246  
      *     {@link Integer }
 247  
      *     
 248  
      */
 249  
     public Integer getMaxRows() {
 250  0
         return maxRows;
 251  
     }
 252  
 
 253  
     /**
 254  
      * Sets the value of the maxRows property.
 255  
      * 
 256  
      * @param value
 257  
      *     allowed object is
 258  
      *     {@link Integer }
 259  
      *     
 260  
      */
 261  
     public void setMaxRows(Integer value) {
 262  22
         this.maxRows = value;
 263  22
     }
 264  
 
 265  
 }