This project has retired. For details please refer to its Attic page.
Coverage Report
Coverage Report - org.apache.ws.scout.model.uddi.v2.DiscardAuthToken
 
Classes in this File Line Coverage Branch Coverage Complexity
DiscardAuthToken
0%
0/7
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 discard_authToken complex type.
 20  
  * 
 21  
  * <p>The following schema fragment specifies the expected content contained within this class.
 22  
  * 
 23  
  * <pre>
 24  
  * &lt;complexType name="discard_authToken">
 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}authInfo"/>
 29  
  *       &lt;/sequence>
 30  
  *       &lt;attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 31  
  *     &lt;/restriction>
 32  
  *   &lt;/complexContent>
 33  
  * &lt;/complexType>
 34  
  * </pre>
 35  
  * 
 36  
  * 
 37  
  */
 38  
 @XmlAccessorType(XmlAccessType.FIELD)
 39  
 @XmlType(name = "discard_authToken", propOrder = {
 40  
     "authInfo"
 41  
 })
 42  0
 public class DiscardAuthToken {
 43  
 
 44  
     @XmlElement(required = true)
 45  
     protected String authInfo;
 46  
     @XmlAttribute(required = true)
 47  
     protected String generic;
 48  
 
 49  
     /**
 50  
      * Gets the value of the authInfo property.
 51  
      * 
 52  
      * @return
 53  
      *     possible object is
 54  
      *     {@link String }
 55  
      *     
 56  
      */
 57  
     public String getAuthInfo() {
 58  0
         return authInfo;
 59  
     }
 60  
 
 61  
     /**
 62  
      * Sets the value of the authInfo property.
 63  
      * 
 64  
      * @param value
 65  
      *     allowed object is
 66  
      *     {@link String }
 67  
      *     
 68  
      */
 69  
     public void setAuthInfo(String value) {
 70  0
         this.authInfo = value;
 71  0
     }
 72  
 
 73  
     /**
 74  
      * Gets the value of the generic property.
 75  
      * 
 76  
      * @return
 77  
      *     possible object is
 78  
      *     {@link String }
 79  
      *     
 80  
      */
 81  
     public String getGeneric() {
 82  0
         return generic;
 83  
     }
 84  
 
 85  
     /**
 86  
      * Sets the value of the generic property.
 87  
      * 
 88  
      * @param value
 89  
      *     allowed object is
 90  
      *     {@link String }
 91  
      *     
 92  
      */
 93  
     public void setGeneric(String value) {
 94  0
         this.generic = value;
 95  0
     }
 96  
 
 97  
 }