This project has retired. For details please refer to its Attic page.
RetrievalMethodType xref
View Javadoc
1   /*
2    * Copyright 2001-2008 The Apache Software Foundation.
3    * 
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   *
16   */
17  
18  
19  package org.w3._2000._09.xmldsig_;
20  
21  import javax.xml.bind.annotation.XmlAccessType;
22  import javax.xml.bind.annotation.XmlAccessorType;
23  import javax.xml.bind.annotation.XmlAttribute;
24  import javax.xml.bind.annotation.XmlElement;
25  import javax.xml.bind.annotation.XmlSchemaType;
26  import javax.xml.bind.annotation.XmlType;
27  
28  
29  /**
30   * <p>Java class for RetrievalMethodType complex type.
31   * 
32   * <p>The following schema fragment specifies the expected content contained within this class.
33   * 
34   * <pre>
35   * &lt;complexType name="RetrievalMethodType">
36   *   &lt;complexContent>
37   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
38   *       &lt;sequence>
39   *         &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}Transforms" minOccurs="0"/>
40   *       &lt;/sequence>
41   *       &lt;attribute name="URI" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
42   *       &lt;attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
43   *     &lt;/restriction>
44   *   &lt;/complexContent>
45   * &lt;/complexType>
46   * </pre>
47   * 
48   * 
49   */
50  @XmlAccessorType(XmlAccessType.FIELD)
51  @XmlType(name = "RetrievalMethodType", propOrder = {
52      "transforms"
53  })
54  public class RetrievalMethodType {
55  
56      @XmlElement(name = "Transforms")
57      protected TransformsType transforms;
58      @XmlAttribute(name = "URI")
59      @XmlSchemaType(name = "anyURI")
60      protected String uri;
61      @XmlAttribute(name = "Type")
62      @XmlSchemaType(name = "anyURI")
63      protected String type;
64  
65      /**
66       * Gets the value of the transforms property.
67       * 
68       * @return
69       *     possible object is
70       *     {@link TransformsType }
71       *     
72       */
73      public TransformsType getTransforms() {
74          return transforms;
75      }
76  
77      /**
78       * Sets the value of the transforms property.
79       * 
80       * @param value
81       *     allowed object is
82       *     {@link TransformsType }
83       *     
84       */
85      public void setTransforms(TransformsType value) {
86          this.transforms = value;
87      }
88  
89      /**
90       * Gets the value of the uri property.
91       * 
92       * @return
93       *     possible object is
94       *     {@link String }
95       *     
96       */
97      public String getURI() {
98          return uri;
99      }
100 
101     /**
102      * Sets the value of the uri property.
103      * 
104      * @param value
105      *     allowed object is
106      *     {@link String }
107      *     
108      */
109     public void setURI(String value) {
110         this.uri = value;
111     }
112 
113     /**
114      * Gets the value of the type property.
115      * 
116      * @return
117      *     possible object is
118      *     {@link String }
119      *     
120      */
121     public String getType() {
122         return type;
123     }
124 
125     /**
126      * Sets the value of the type property.
127      * 
128      * @param value
129      *     allowed object is
130      *     {@link String }
131      *     
132      */
133     public void setType(String value) {
134         this.type = value;
135     }
136 
137 }