Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
RetrievalMethodType |
|
| 1.0;1 |
1 | ||
2 | package org.kuali.student.security.xmldsig.dto; | |
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 | * <complexType name="RetrievalMethodType"> | |
19 | * <complexContent> | |
20 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
21 | * <sequence> | |
22 | * <element ref="{http://www.w3.org/2000/09/xmldsig#}Transforms" minOccurs="0"/> | |
23 | * </sequence> | |
24 | * <attribute name="URI" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> | |
25 | * <attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> | |
26 | * </restriction> | |
27 | * </complexContent> | |
28 | * </complexType> | |
29 | * </pre> | |
30 | * | |
31 | * | |
32 | */ | |
33 | @XmlAccessorType(XmlAccessType.FIELD) | |
34 | @XmlType(name = "RetrievalMethodType", propOrder = { | |
35 | "transforms" | |
36 | }) | |
37 | 0 | public class RetrievalMethodType { |
38 | ||
39 | @XmlElement(name = "Transforms") | |
40 | protected TransformsType transforms; | |
41 | @XmlAttribute(name = "URI") | |
42 | @XmlSchemaType(name = "anyURI") | |
43 | protected String uri; | |
44 | @XmlAttribute(name = "Type") | |
45 | @XmlSchemaType(name = "anyURI") | |
46 | protected String 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 | 0 | 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 | 0 | this.transforms = value; |
70 | 0 | } |
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 getURI() { | |
81 | 0 | 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 value) { | |
93 | 0 | this.uri = value; |
94 | 0 | } |
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 getType() { | |
105 | 0 | 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 value) { | |
117 | 0 | this.type = value; |
118 | 0 | } |
119 | ||
120 | } |