KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3 > _2000 > _09 > xmldsig_ > RetrievalMethodType


1
2 package org.w3._2000._09.xmldsig_;
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.XmlElement;
8 import javax.xml.bind.annotation.XmlSchemaType;
9 import javax.xml.bind.annotation.XmlType;
10
11
12 /**
13  * <p>Java class for RetrievalMethodType complex type.
14  *
15  * <p>The following schema fragment specifies the expected content contained within this class.
16  *
17  * <pre>
18  * &lt;complexType name="RetrievalMethodType">
19  * &lt;complexContent>
20  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21  * &lt;sequence>
22  * &lt;element name="Transforms" type="{http://www.w3.org/2000/09/xmldsig#}TransformsType" minOccurs="0"/>
23  * &lt;/sequence>
24  * &lt;attribute name="URI" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
25  * &lt;attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
26  * &lt;/restriction>
27  * &lt;/complexContent>
28  * &lt;/complexType>
29  * </pre>
30  *
31  *
32  */

33 @XmlAccessorType(XmlAccessType.FIELD)
34 @XmlType(name = "RetrievalMethodType", propOrder = {
35     "transforms"
36 })
37 public class RetrievalMethodType {
38
39     @XmlElement(name = "Transforms")
40     protected TransformsType transforms;
41     @XmlAttribute(name = "URI")
42     @XmlSchemaType(name = "anyURI")
43     protected String JavaDoc uri;
44     @XmlAttribute(name = "Type")
45     @XmlSchemaType(name = "anyURI")
46     protected String JavaDoc type;
47
48     /**
49      * Gets the value of the transforms property.
50      *
51      * @return
52      * possible object is
53      * {@link TransformsType }
54      *
55      */

56     public TransformsType getTransforms() {
57         return transforms;
58     }
59
60     /**
61      * Sets the value of the transforms property.
62      *
63      * @param value
64      * allowed object is
65      * {@link TransformsType }
66      *
67      */

68     public void setTransforms(TransformsType value) {
69         this.transforms = value;
70     }
71
72     /**
73      * Gets the value of the uri property.
74      *
75      * @return
76      * possible object is
77      * {@link String }
78      *
79      */

80     public String JavaDoc getURI() {
81         return uri;
82     }
83
84     /**
85      * Sets the value of the uri property.
86      *
87      * @param value
88      * allowed object is
89      * {@link String }
90      *
91      */

92     public void setURI(String JavaDoc value) {
93         this.uri = value;
94     }
95
96     /**
97      * Gets the value of the type property.
98      *
99      * @return
100      * possible object is
101      * {@link String }
102      *
103      */

104     public String JavaDoc getType() {
105         return type;
106     }
107
108     /**
109      * Sets the value of the type property.
110      *
111      * @param value
112      * allowed object is
113      * {@link String }
114      *
115      */

116     public void setType(String JavaDoc value) {
117         this.type = value;
118     }
119
120 }
121
Popular Tags