KickJava   Java API By Example, From Geeks To Geeks.

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


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
10
11 /**
12  * <p>Java class for UseKeyWithType complex type.
13  *
14  * <p>The following schema fragment specifies the expected content contained within this class.
15  *
16  * <pre>
17  * &lt;complexType name="UseKeyWithType">
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;attribute name="Application" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
21  * &lt;attribute name="Identifier" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
22  * &lt;/restriction>
23  * &lt;/complexContent>
24  * &lt;/complexType>
25  * </pre>
26  *
27  *
28  */

29 @XmlAccessorType(XmlAccessType.FIELD)
30 @XmlType(name = "UseKeyWithType")
31 public class UseKeyWithType {
32
33     @XmlAttribute(name = "Application", required = true)
34     @XmlSchemaType(name = "anyURI")
35     protected String JavaDoc application;
36     @XmlAttribute(name = "Identifier", required = true)
37     protected String JavaDoc identifier;
38
39     /**
40      * Gets the value of the application property.
41      *
42      * @return
43      * possible object is
44      * {@link String }
45      *
46      */

47     public String JavaDoc getApplication() {
48         return application;
49     }
50
51     /**
52      * Sets the value of the application property.
53      *
54      * @param value
55      * allowed object is
56      * {@link String }
57      *
58      */

59     public void setApplication(String JavaDoc value) {
60         this.application = value;
61     }
62
63     /**
64      * Gets the value of the identifier property.
65      *
66      * @return
67      * possible object is
68      * {@link String }
69      *
70      */

71     public String JavaDoc getIdentifier() {
72         return identifier;
73     }
74
75     /**
76      * Sets the value of the identifier property.
77      *
78      * @param value
79      * allowed object is
80      * {@link String }
81      *
82      */

83     public void setIdentifier(String JavaDoc value) {
84         this.identifier = value;
85     }
86
87 }
88
Popular Tags