This project has retired. For details please refer to its Attic page.
Coverage Report
Coverage Report - org.apache.ws.scout.model.uddi.v2.RelatedBusinessesList
 
Classes in this File Line Coverage Branch Coverage Complexity
RelatedBusinessesList
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 relatedBusinessesList complex type.
 20  
  * 
 21  
  * <p>The following schema fragment specifies the expected content contained within this class.
 22  
  * 
 23  
  * <pre>
 24  
  * &lt;complexType name="relatedBusinessesList">
 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}businessKey"/>
 29  
  *         &lt;element ref="{urn:uddi-org:api_v2}relatedBusinessInfos"/>
 30  
  *       &lt;/sequence>
 31  
  *       &lt;attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 32  
  *       &lt;attribute name="operator" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 33  
  *       &lt;attribute name="truncated" type="{urn:uddi-org:api_v2}truncated" />
 34  
  *     &lt;/restriction>
 35  
  *   &lt;/complexContent>
 36  
  * &lt;/complexType>
 37  
  * </pre>
 38  
  * 
 39  
  * 
 40  
  */
 41  
 @XmlAccessorType(XmlAccessType.FIELD)
 42  
 @XmlType(name = "relatedBusinessesList", propOrder = {
 43  
     "businessKey",
 44  
     "relatedBusinessInfos"
 45  
 })
 46  0
 public class RelatedBusinessesList {
 47  
 
 48  
     @XmlElement(required = true)
 49  
     protected String businessKey;
 50  
     @XmlElement(required = true)
 51  
     protected RelatedBusinessInfos relatedBusinessInfos;
 52  
     @XmlAttribute(required = true)
 53  
     protected String generic;
 54  
     @XmlAttribute(required = true)
 55  
     protected String operator;
 56  
     @XmlAttribute
 57  
     protected Truncated truncated;
 58  
 
 59  
     /**
 60  
      * Gets the value of the businessKey property.
 61  
      * 
 62  
      * @return
 63  
      *     possible object is
 64  
      *     {@link String }
 65  
      *     
 66  
      */
 67  
     public String getBusinessKey() {
 68  0
         return businessKey;
 69  
     }
 70  
 
 71  
     /**
 72  
      * Sets the value of the businessKey property.
 73  
      * 
 74  
      * @param value
 75  
      *     allowed object is
 76  
      *     {@link String }
 77  
      *     
 78  
      */
 79  
     public void setBusinessKey(String value) {
 80  0
         this.businessKey = value;
 81  0
     }
 82  
 
 83  
     /**
 84  
      * Gets the value of the relatedBusinessInfos property.
 85  
      * 
 86  
      * @return
 87  
      *     possible object is
 88  
      *     {@link RelatedBusinessInfos }
 89  
      *     
 90  
      */
 91  
     public RelatedBusinessInfos getRelatedBusinessInfos() {
 92  0
         return relatedBusinessInfos;
 93  
     }
 94  
 
 95  
     /**
 96  
      * Sets the value of the relatedBusinessInfos property.
 97  
      * 
 98  
      * @param value
 99  
      *     allowed object is
 100  
      *     {@link RelatedBusinessInfos }
 101  
      *     
 102  
      */
 103  
     public void setRelatedBusinessInfos(RelatedBusinessInfos value) {
 104  0
         this.relatedBusinessInfos = value;
 105  0
     }
 106  
 
 107  
     /**
 108  
      * Gets the value of the generic property.
 109  
      * 
 110  
      * @return
 111  
      *     possible object is
 112  
      *     {@link String }
 113  
      *     
 114  
      */
 115  
     public String getGeneric() {
 116  0
         return generic;
 117  
     }
 118  
 
 119  
     /**
 120  
      * Sets the value of the generic property.
 121  
      * 
 122  
      * @param value
 123  
      *     allowed object is
 124  
      *     {@link String }
 125  
      *     
 126  
      */
 127  
     public void setGeneric(String value) {
 128  0
         this.generic = value;
 129  0
     }
 130  
 
 131  
     /**
 132  
      * Gets the value of the operator property.
 133  
      * 
 134  
      * @return
 135  
      *     possible object is
 136  
      *     {@link String }
 137  
      *     
 138  
      */
 139  
     public String getOperator() {
 140  0
         return operator;
 141  
     }
 142  
 
 143  
     /**
 144  
      * Sets the value of the operator property.
 145  
      * 
 146  
      * @param value
 147  
      *     allowed object is
 148  
      *     {@link String }
 149  
      *     
 150  
      */
 151  
     public void setOperator(String value) {
 152  0
         this.operator = value;
 153  0
     }
 154  
 
 155  
     /**
 156  
      * Gets the value of the truncated property.
 157  
      * 
 158  
      * @return
 159  
      *     possible object is
 160  
      *     {@link Truncated }
 161  
      *     
 162  
      */
 163  
     public Truncated getTruncated() {
 164  0
         return truncated;
 165  
     }
 166  
 
 167  
     /**
 168  
      * Sets the value of the truncated property.
 169  
      * 
 170  
      * @param value
 171  
      *     allowed object is
 172  
      *     {@link Truncated }
 173  
      *     
 174  
      */
 175  
     public void setTruncated(Truncated value) {
 176  0
         this.truncated = value;
 177  0
     }
 178  
 
 179  
 }