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