KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > xml > dsig > core > RetrievalMethodType


1 //
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b26-ea3
3
// See <a HREF="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4
// Any modifications to this file will be lost upon recompilation of the source schema.
5
// Generated on: 2006.02.24 at 05:55:09 PM PST
6
//
7

8
9 package com.sun.xml.dsig.core;
10
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlAttribute;
14 import javax.xml.bind.annotation.XmlElement;
15 import javax.xml.bind.annotation.XmlType;
16 import com.sun.xml.dsig.core.RetrievalMethodType;
17 import com.sun.xml.dsig.core.TransformsType;
18
19
20 /**
21  * <p>Java class for RetrievalMethodType complex type.
22  *
23  * <p>The following schema fragment specifies the expected content contained within this class.
24  *
25  * <pre>
26  * &lt;complexType name="RetrievalMethodType">
27  * &lt;complexContent>
28  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29  * &lt;sequence>
30  * &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}Transforms" minOccurs="0"/>
31  * &lt;/sequence>
32  * &lt;attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
33  * &lt;attribute name="URI" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
34  * &lt;/restriction>
35  * &lt;/complexContent>
36  * &lt;/complexType>
37  * </pre>
38  *
39  *
40  */

41 @XmlAccessorType(XmlAccessType.FIELD)
42 @XmlType(name = "RetrievalMethodType", propOrder = {
43     "transforms"
44 })
45 public class RetrievalMethodType {
46
47     @XmlElement(name = "Transforms", namespace = "http://www.w3.org/2000/09/xmldsig#")
48     protected TransformsType transforms;
49     @XmlAttribute(name = "Type")
50     protected String JavaDoc type;
51     @XmlAttribute(name = "URI")
52     protected String JavaDoc uri;
53
54     /**
55      * Gets the value of the transforms property.
56      *
57      * @return
58      * possible object is
59      * {@link TransformsType }
60      *
61      */

62     public TransformsType getTransforms() {
63         return transforms;
64     }
65
66     /**
67      * Sets the value of the transforms property.
68      *
69      * @param value
70      * allowed object is
71      * {@link TransformsType }
72      *
73      */

74     public void setTransforms(TransformsType value) {
75         this.transforms = value;
76     }
77
78     /**
79      * Gets the value of the type property.
80      *
81      * @return
82      * possible object is
83      * {@link String }
84      *
85      */

86     public String JavaDoc getType() {
87         return type;
88     }
89
90     /**
91      * Sets the value of the type property.
92      *
93      * @param value
94      * allowed object is
95      * {@link String }
96      *
97      */

98     public void setType(String JavaDoc value) {
99         this.type = value;
100     }
101
102     /**
103      * Gets the value of the uri property.
104      *
105      * @return
106      * possible object is
107      * {@link String }
108      *
109      */

110     public String JavaDoc getURI() {
111         return uri;
112     }
113
114     /**
115      * Sets the value of the uri property.
116      *
117      * @param value
118      * allowed object is
119      * {@link String }
120      *
121      */

122     public void setURI(String JavaDoc value) {
123         this.uri = value;
124     }
125
126 }
127
Popular Tags