This project has retired. For details please refer to its Attic page.
Coverage Report
Coverage Report - org.apache.ws.scout.model.uddi.v2.DispositionReport
 
Classes in this File Line Coverage Branch Coverage Complexity
DispositionReport
23%
3/13
50%
1/2
1.143
 
 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.XmlElement;
 18  
 import javax.xml.bind.annotation.XmlType;
 19  
 
 20  
 
 21  
 /**
 22  
  * <p>Java class for dispositionReport complex type.
 23  
  * 
 24  
  * <p>The following schema fragment specifies the expected content contained within this class.
 25  
  * 
 26  
  * <pre>
 27  
  * &lt;complexType name="dispositionReport">
 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}result" maxOccurs="unbounded"/>
 32  
  *       &lt;/sequence>
 33  
  *       &lt;attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 34  
  *       &lt;attribute name="operator" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 35  
  *       &lt;attribute name="truncated" type="{urn:uddi-org:api_v2}truncated" />
 36  
  *     &lt;/restriction>
 37  
  *   &lt;/complexContent>
 38  
  * &lt;/complexType>
 39  
  * </pre>
 40  
  * 
 41  
  * 
 42  
  */
 43  
 @XmlAccessorType(XmlAccessType.FIELD)
 44  
 @XmlType(name = "dispositionReport", propOrder = {
 45  
     "result"
 46  
 })
 47  120
 public class DispositionReport {
 48  
 
 49  
     @XmlElement(required = true)
 50  
     protected List<Result> result;
 51  
     @XmlAttribute(required = true)
 52  
     protected String generic;
 53  
     @XmlAttribute(required = true)
 54  
     protected String operator;
 55  
     @XmlAttribute
 56  
     protected Truncated truncated;
 57  
 
 58  
     /**
 59  
      * Gets the value of the result property.
 60  
      * 
 61  
      * <p>
 62  
      * This accessor method returns a reference to the live list,
 63  
      * not a snapshot. Therefore any modification you make to the
 64  
      * returned list will be present inside the JAXB object.
 65  
      * This is why there is not a <CODE>set</CODE> method for the result property.
 66  
      * 
 67  
      * <p>
 68  
      * For example, to add a new item, do as follows:
 69  
      * <pre>
 70  
      *    getResult().add(newItem);
 71  
      * </pre>
 72  
      * 
 73  
      * 
 74  
      * <p>
 75  
      * Objects of the following type(s) are allowed in the list
 76  
      * {@link Result }
 77  
      * 
 78  
      * 
 79  
      */
 80  
     public List<Result> getResult() {
 81  88
         if (result == null) {
 82  0
             result = new ArrayList<Result>();
 83  
         }
 84  88
         return this.result;
 85  
     }
 86  
 
 87  
     /**
 88  
      * Gets the value of the generic property.
 89  
      * 
 90  
      * @return
 91  
      *     possible object is
 92  
      *     {@link String }
 93  
      *     
 94  
      */
 95  
     public String getGeneric() {
 96  0
         return generic;
 97  
     }
 98  
 
 99  
     /**
 100  
      * Sets the value of the generic property.
 101  
      * 
 102  
      * @param value
 103  
      *     allowed object is
 104  
      *     {@link String }
 105  
      *     
 106  
      */
 107  
     public void setGeneric(String value) {
 108  0
         this.generic = value;
 109  0
     }
 110  
 
 111  
     /**
 112  
      * Gets the value of the operator property.
 113  
      * 
 114  
      * @return
 115  
      *     possible object is
 116  
      *     {@link String }
 117  
      *     
 118  
      */
 119  
     public String getOperator() {
 120  0
         return operator;
 121  
     }
 122  
 
 123  
     /**
 124  
      * Sets the value of the operator property.
 125  
      * 
 126  
      * @param value
 127  
      *     allowed object is
 128  
      *     {@link String }
 129  
      *     
 130  
      */
 131  
     public void setOperator(String value) {
 132  0
         this.operator = value;
 133  0
     }
 134  
 
 135  
     /**
 136  
      * Gets the value of the truncated property.
 137  
      * 
 138  
      * @return
 139  
      *     possible object is
 140  
      *     {@link Truncated }
 141  
      *     
 142  
      */
 143  
     public Truncated getTruncated() {
 144  0
         return truncated;
 145  
     }
 146  
 
 147  
     /**
 148  
      * Sets the value of the truncated property.
 149  
      * 
 150  
      * @param value
 151  
      *     allowed object is
 152  
      *     {@link Truncated }
 153  
      *     
 154  
      */
 155  
     public void setTruncated(Truncated value) {
 156  0
         this.truncated = value;
 157  0
     }
 158  
 
 159  
 }