This project has retired. For details please refer to its Attic page.
C:\projects\asf\juddi-scout\src\main\java\org\apache\ws\scout\model\uddi\v2\GetAssertionStatusReport.java xref
View Javadoc
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 get_assertionStatusReport complex type.
20   * 
21   * <p>The following schema fragment specifies the expected content contained within this class.
22   * 
23   * <pre>
24   * &lt;complexType name="get_assertionStatusReport">
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;element ref="{urn:uddi-org:api_v2}completionStatus" minOccurs="0"/>
30   *       &lt;/sequence>
31   *       &lt;attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
32   *     &lt;/restriction>
33   *   &lt;/complexContent>
34   * &lt;/complexType>
35   * </pre>
36   * 
37   * 
38   */
39  @XmlAccessorType(XmlAccessType.FIELD)
40  @XmlType(name = "get_assertionStatusReport", propOrder = {
41      "authInfo",
42      "completionStatus"
43  })
44  public class GetAssertionStatusReport {
45  
46      @XmlElement(required = true)
47      protected String authInfo;
48      protected String completionStatus;
49      @XmlAttribute(required = true)
50      protected String generic;
51  
52      /**
53       * Gets the value of the authInfo property.
54       * 
55       * @return
56       *     possible object is
57       *     {@link String }
58       *     
59       */
60      public String getAuthInfo() {
61          return authInfo;
62      }
63  
64      /**
65       * Sets the value of the authInfo property.
66       * 
67       * @param value
68       *     allowed object is
69       *     {@link String }
70       *     
71       */
72      public void setAuthInfo(String value) {
73          this.authInfo = value;
74      }
75  
76      /**
77       * Gets the value of the completionStatus property.
78       * 
79       * @return
80       *     possible object is
81       *     {@link String }
82       *     
83       */
84      public String getCompletionStatus() {
85          return completionStatus;
86      }
87  
88      /**
89       * Sets the value of the completionStatus property.
90       * 
91       * @param value
92       *     allowed object is
93       *     {@link String }
94       *     
95       */
96      public void setCompletionStatus(String value) {
97          this.completionStatus = value;
98      }
99  
100     /**
101      * Gets the value of the generic property.
102      * 
103      * @return
104      *     possible object is
105      *     {@link String }
106      *     
107      */
108     public String getGeneric() {
109         return generic;
110     }
111 
112     /**
113      * Sets the value of the generic property.
114      * 
115      * @param value
116      *     allowed object is
117      *     {@link String }
118      *     
119      */
120     public void setGeneric(String value) {
121         this.generic = value;
122     }
123 
124 }