KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3 > _2002 > _03 > xkms_ > PendingRequestType


1
2 package org.w3._2002._03.xkms_;
3
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlAttribute;
7 import javax.xml.bind.annotation.XmlSchemaType;
8 import javax.xml.bind.annotation.XmlType;
9 import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
10 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
11
12
13 /**
14  * <p>Java class for PendingRequestType complex type.
15  *
16  * <p>The following schema fragment specifies the expected content contained within this class.
17  *
18  * <pre>
19  * &lt;complexType name="PendingRequestType">
20  * &lt;complexContent>
21  * &lt;extension base="{http://www.w3.org/2002/03/xkms#}RequestAbstractType">
22  * &lt;attribute name="ResponseId" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" />
23  * &lt;/extension>
24  * &lt;/complexContent>
25  * &lt;/complexType>
26  * </pre>
27  *
28  *
29  */

30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "PendingRequestType")
32 /*@XmlSeeAlso({
33     StatusRequestType.class
34 })*/

35 public class PendingRequestType
36     extends RequestAbstractType
37 {
38
39     @XmlAttribute(name = "ResponseId", required = true)
40     @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
41     @XmlSchemaType(name = "NCName")
42     protected String JavaDoc responseId;
43
44     /**
45      * Gets the value of the responseId property.
46      *
47      * @return
48      * possible object is
49      * {@link String }
50      *
51      */

52     public String JavaDoc getResponseId() {
53         return responseId;
54     }
55
56     /**
57      * Sets the value of the responseId property.
58      *
59      * @param value
60      * allowed object is
61      * {@link String }
62      *
63      */

64     public void setResponseId(String JavaDoc value) {
65         this.responseId = value;
66     }
67
68 }
69
Popular Tags