This project has retired. For details please refer to its Attic page.
Coverage Report
Coverage Report - org.apache.ws.scout.model.uddi.v2.GetAuthToken
 
Classes in this File Line Coverage Branch Coverage Complexity
GetAuthToken
50%
5/10
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.XmlType;
 15  
 
 16  
 
 17  
 /**
 18  
  * <p>Java class for get_authToken complex type.
 19  
  * 
 20  
  * <p>The following schema fragment specifies the expected content contained within this class.
 21  
  * 
 22  
  * <pre>
 23  
  * &lt;complexType name="get_authToken">
 24  
  *   &lt;complexContent>
 25  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 26  
  *       &lt;attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 27  
  *       &lt;attribute name="userID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 28  
  *       &lt;attribute name="cred" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 29  
  *     &lt;/restriction>
 30  
  *   &lt;/complexContent>
 31  
  * &lt;/complexType>
 32  
  * </pre>
 33  
  * 
 34  
  * 
 35  
  */
 36  
 @XmlAccessorType(XmlAccessType.FIELD)
 37  
 @XmlType(name = "get_authToken")
 38  4
 public class GetAuthToken {
 39  
 
 40  
     @XmlAttribute(required = true)
 41  
     protected String generic;
 42  
     @XmlAttribute(required = true)
 43  
     protected String userID;
 44  
     @XmlAttribute(required = true)
 45  
     protected String cred;
 46  
 
 47  
     /**
 48  
      * Gets the value of the generic property.
 49  
      * 
 50  
      * @return
 51  
      *     possible object is
 52  
      *     {@link String }
 53  
      *     
 54  
      */
 55  
     public String getGeneric() {
 56  0
         return generic;
 57  
     }
 58  
 
 59  
     /**
 60  
      * Sets the value of the generic property.
 61  
      * 
 62  
      * @param value
 63  
      *     allowed object is
 64  
      *     {@link String }
 65  
      *     
 66  
      */
 67  
     public void setGeneric(String value) {
 68  0
         this.generic = value;
 69  0
     }
 70  
 
 71  
     /**
 72  
      * Gets the value of the userID property.
 73  
      * 
 74  
      * @return
 75  
      *     possible object is
 76  
      *     {@link String }
 77  
      *     
 78  
      */
 79  
     public String getUserID() {
 80  0
         return userID;
 81  
     }
 82  
 
 83  
     /**
 84  
      * Sets the value of the userID property.
 85  
      * 
 86  
      * @param value
 87  
      *     allowed object is
 88  
      *     {@link String }
 89  
      *     
 90  
      */
 91  
     public void setUserID(String value) {
 92  4
         this.userID = value;
 93  4
     }
 94  
 
 95  
     /**
 96  
      * Gets the value of the cred property.
 97  
      * 
 98  
      * @return
 99  
      *     possible object is
 100  
      *     {@link String }
 101  
      *     
 102  
      */
 103  
     public String getCred() {
 104  0
         return cred;
 105  
     }
 106  
 
 107  
     /**
 108  
      * Sets the value of the cred property.
 109  
      * 
 110  
      * @param value
 111  
      *     allowed object is
 112  
      *     {@link String }
 113  
      *     
 114  
      */
 115  
     public void setCred(String value) {
 116  4
         this.cred = value;
 117  4
     }
 118  
 
 119  
 }