KickJava   Java API By Example, From Geeks To Geeks.

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


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

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

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

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

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

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