Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
StatusType |
|
| 1.0;1 |
1 | ||
2 | package org.kuali.student.security.trust.dto; | |
3 | ||
4 | import javax.xml.bind.annotation.XmlAccessType; | |
5 | import javax.xml.bind.annotation.XmlAccessorType; | |
6 | import javax.xml.bind.annotation.XmlElement; | |
7 | import javax.xml.bind.annotation.XmlType; | |
8 | ||
9 | ||
10 | /** | |
11 | * <p>Java class for StatusType complex type. | |
12 | * | |
13 | * <p>The following schema fragment specifies the expected content contained within this class. | |
14 | * | |
15 | * <pre> | |
16 | * <complexType name="StatusType"> | |
17 | * <complexContent> | |
18 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
19 | * <sequence> | |
20 | * <element name="Code" type="{http://schemas.xmlsoap.org/ws/2005/02/trust}StatusCodeOpenEnum"/> | |
21 | * <element name="Reason" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
22 | * </sequence> | |
23 | * </restriction> | |
24 | * </complexContent> | |
25 | * </complexType> | |
26 | * </pre> | |
27 | * | |
28 | * | |
29 | */ | |
30 | @XmlAccessorType(XmlAccessType.FIELD) | |
31 | @XmlType(name = "StatusType", propOrder = { | |
32 | "code", | |
33 | "reason" | |
34 | }) | |
35 | 0 | public class StatusType { |
36 | ||
37 | @XmlElement(name = "Code", required = true) | |
38 | protected String code; | |
39 | @XmlElement(name = "Reason") | |
40 | protected String reason; | |
41 | ||
42 | /** | |
43 | * Gets the value of the code property. | |
44 | * | |
45 | * @return | |
46 | * possible object is | |
47 | * {@link String } | |
48 | * | |
49 | */ | |
50 | public String getCode() { | |
51 | 0 | return code; |
52 | } | |
53 | ||
54 | /** | |
55 | * Sets the value of the code property. | |
56 | * | |
57 | * @param value | |
58 | * allowed object is | |
59 | * {@link String } | |
60 | * | |
61 | */ | |
62 | public void setCode(String value) { | |
63 | 0 | this.code = value; |
64 | 0 | } |
65 | ||
66 | /** | |
67 | * Gets the value of the reason property. | |
68 | * | |
69 | * @return | |
70 | * possible object is | |
71 | * {@link String } | |
72 | * | |
73 | */ | |
74 | public String getReason() { | |
75 | 0 | return reason; |
76 | } | |
77 | ||
78 | /** | |
79 | * Sets the value of the reason property. | |
80 | * | |
81 | * @param value | |
82 | * allowed object is | |
83 | * {@link String } | |
84 | * | |
85 | */ | |
86 | public void setReason(String value) { | |
87 | 0 | this.reason = value; |
88 | 0 | } |
89 | ||
90 | } |