KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3 > _2001 > _04 > xmlenc_ > CipherReferenceType


1
2 package org.w3._2001._04.xmlenc_;
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 CipherReferenceType complex type.
14  *
15  * <p>The following schema fragment specifies the expected content contained within this class.
16  *
17  * <pre>
18  * &lt;complexType name="CipherReferenceType">
19  * &lt;complexContent>
20  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21  * &lt;choice>
22  * &lt;element name="Transforms" type="{http://www.w3.org/2001/04/xmlenc#}TransformsType" minOccurs="0"/>
23  * &lt;/choice>
24  * &lt;attribute name="URI" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
25  * &lt;/restriction>
26  * &lt;/complexContent>
27  * &lt;/complexType>
28  * </pre>
29  *
30  *
31  */

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

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

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

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

88     public void setURI(String JavaDoc value) {
89         this.uri = value;
90     }
91
92 }
93
Popular Tags