Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
CancelTargetType |
|
| 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.XmlAnyElement; | |
7 | import javax.xml.bind.annotation.XmlType; | |
8 | ||
9 | ||
10 | /** | |
11 | * <p>Java class for CancelTargetType complex type. | |
12 | * | |
13 | * <p>The following schema fragment specifies the expected content contained within this class. | |
14 | * | |
15 | * <pre> | |
16 | * <complexType name="CancelTargetType"> | |
17 | * <complexContent> | |
18 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
19 | * <sequence> | |
20 | * <any namespace='##other'/> | |
21 | * </sequence> | |
22 | * </restriction> | |
23 | * </complexContent> | |
24 | * </complexType> | |
25 | * </pre> | |
26 | * | |
27 | * | |
28 | */ | |
29 | @XmlAccessorType(XmlAccessType.FIELD) | |
30 | @XmlType(name = "CancelTargetType", propOrder = { | |
31 | "any" | |
32 | }) | |
33 | 0 | public class CancelTargetType { |
34 | ||
35 | @XmlAnyElement(lax = true) | |
36 | protected Object any; | |
37 | ||
38 | /** | |
39 | * Gets the value of the any property. | |
40 | * | |
41 | * @return | |
42 | * possible object is | |
43 | * {@link Object } | |
44 | * | |
45 | */ | |
46 | public Object getAny() { | |
47 | 0 | return any; |
48 | } | |
49 | ||
50 | /** | |
51 | * Sets the value of the any property. | |
52 | * | |
53 | * @param value | |
54 | * allowed object is | |
55 | * {@link Object } | |
56 | * | |
57 | */ | |
58 | public void setAny(Object value) { | |
59 | 0 | this.any = value; |
60 | 0 | } |
61 | ||
62 | } |