KickJava   Java API By Example, From Geeks To Geeks.

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


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.XmlElement;
7 import javax.xml.bind.annotation.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
9
10
11 /**
12  * <p>Java class for LocateRequestType complex type.
13  *
14  * <p>The following schema fragment specifies the expected content contained within this class.
15  *
16  * <pre>
17  * &lt;complexType name="LocateRequestType">
18  * &lt;complexContent>
19  * &lt;extension base="{http://www.w3.org/2002/03/xkms#}RequestAbstractType">
20  * &lt;sequence>
21  * &lt;element ref="{http://www.w3.org/2002/03/xkms#}QueryKeyBinding"/>
22  * &lt;/sequence>
23  * &lt;/extension>
24  * &lt;/complexContent>
25  * &lt;/complexType>
26  * </pre>
27  *
28  *
29  */

30 @XmlRootElement
31 @XmlAccessorType(XmlAccessType.FIELD)
32 @XmlType(name = "LocateRequestType", propOrder = {
33     "queryKeyBinding"
34 })
35 public class LocateRequestType
36     extends RequestAbstractType
37 {
38
39     @XmlElement(name = "QueryKeyBinding", required = true)
40     protected QueryKeyBindingType queryKeyBinding;
41
42     /**
43      * Gets the value of the queryKeyBinding property.
44      *
45      * @return
46      * possible object is
47      * {@link QueryKeyBindingType }
48      *
49      */

50     public QueryKeyBindingType getQueryKeyBinding() {
51         return queryKeyBinding;
52     }
53
54     /**
55      * Sets the value of the queryKeyBinding property.
56      *
57      * @param value
58      * allowed object is
59      * {@link QueryKeyBindingType }
60      *
61      */

62     public void setQueryKeyBinding(QueryKeyBindingType value) {
63         this.queryKeyBinding = value;
64     }
65
66 }
67
Popular Tags