This project has retired. For details please refer to its Attic page.
Coverage Report
Coverage Report - org.apache.ws.scout.model.uddi.v2.BusinessEntityExt
 
Classes in this File Line Coverage Branch Coverage Complexity
BusinessEntityExt
0%
0/7
0%
0/2
1.333
 
 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.XmlAnyElement;
 17  
 import javax.xml.bind.annotation.XmlElement;
 18  
 import javax.xml.bind.annotation.XmlType;
 19  
 
 20  
 
 21  
 /**
 22  
  * <p>Java class for businessEntityExt complex type.
 23  
  * 
 24  
  * <p>The following schema fragment specifies the expected content contained within this class.
 25  
  * 
 26  
  * <pre>
 27  
  * &lt;complexType name="businessEntityExt">
 28  
  *   &lt;complexContent>
 29  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 30  
  *       &lt;sequence>
 31  
  *         &lt;element ref="{urn:uddi-org:api_v2}businessEntity"/>
 32  
  *         &lt;any/>
 33  
  *       &lt;/sequence>
 34  
  *     &lt;/restriction>
 35  
  *   &lt;/complexContent>
 36  
  * &lt;/complexType>
 37  
  * </pre>
 38  
  * 
 39  
  * 
 40  
  */
 41  
 @XmlAccessorType(XmlAccessType.FIELD)
 42  
 @XmlType(name = "businessEntityExt", propOrder = {
 43  
     "businessEntity",
 44  
     "any"
 45  
 })
 46  0
 public class BusinessEntityExt {
 47  
 
 48  
     @XmlElement(required = true)
 49  
     protected BusinessEntity businessEntity;
 50  
     @XmlAnyElement(lax = true)
 51  
     protected List<Object> any;
 52  
 
 53  
     /**
 54  
      * Gets the value of the businessEntity property.
 55  
      * 
 56  
      * @return
 57  
      *     possible object is
 58  
      *     {@link BusinessEntity }
 59  
      *     
 60  
      */
 61  
     public BusinessEntity getBusinessEntity() {
 62  0
         return businessEntity;
 63  
     }
 64  
 
 65  
     /**
 66  
      * Sets the value of the businessEntity property.
 67  
      * 
 68  
      * @param value
 69  
      *     allowed object is
 70  
      *     {@link BusinessEntity }
 71  
      *     
 72  
      */
 73  
     public void setBusinessEntity(BusinessEntity value) {
 74  0
         this.businessEntity = value;
 75  0
     }
 76  
 
 77  
     /**
 78  
      * Gets the value of the any property.
 79  
      * 
 80  
      * <p>
 81  
      * This accessor method returns a reference to the live list,
 82  
      * not a snapshot. Therefore any modification you make to the
 83  
      * returned list will be present inside the JAXB object.
 84  
      * This is why there is not a <CODE>set</CODE> method for the any property.
 85  
      * 
 86  
      * <p>
 87  
      * For example, to add a new item, do as follows:
 88  
      * <pre>
 89  
      *    getAny().add(newItem);
 90  
      * </pre>
 91  
      * 
 92  
      * 
 93  
      * <p>
 94  
      * Objects of the following type(s) are allowed in the list
 95  
      * {@link Object }
 96  
      * 
 97  
      * 
 98  
      */
 99  
     public List<Object> getAny() {
 100  0
         if (any == null) {
 101  0
             any = new ArrayList<Object>();
 102  
         }
 103  0
         return this.any;
 104  
     }
 105  
 
 106  
 }