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