1
2 package org.kuali.ole.docstore.model.xmlpojo.config;
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.XmlType;
9
10
11 /**
12 * <p>Java class for Mapping complex type.
13 * <p/>
14 * <p>The following schema fragment specifies the expected content contained within this class.
15 * <p/>
16 * <pre>
17 * <complexType name="Mapping">
18 * <complexContent>
19 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20 * <sequence>
21 * <element name="include" type="{http://www.w3.org/2001/XMLSchema}string"/>
22 * <element name="exclude" type="{http://www.w3.org/2001/XMLSchema}string"/>
23 * </sequence>
24 * <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
25 * </restriction>
26 * </complexContent>
27 * </complexType>
28 * </pre>
29 */
30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "Mapping", propOrder = {
32 "include",
33 "exclude"
34 })
35 public class Mapping {
36
37 @XmlElement(required = true)
38 protected String include;
39 @XmlElement(required = true)
40 protected String exclude;
41 @XmlAttribute
42 protected String type;
43
44 /**
45 * Gets the value of the include property.
46 *
47 * @return possible object is
48 * {@link String }
49 */
50 public String getInclude() {
51 return include;
52 }
53
54 /**
55 * Sets the value of the include property.
56 *
57 * @param value allowed object is
58 * {@link String }
59 */
60 public void setInclude(String value) {
61 this.include = value;
62 }
63
64 /**
65 * Gets the value of the exclude property.
66 *
67 * @return possible object is
68 * {@link String }
69 */
70 public String getExclude() {
71 return exclude;
72 }
73
74 /**
75 * Sets the value of the exclude property.
76 *
77 * @param value allowed object is
78 * {@link String }
79 */
80 public void setExclude(String value) {
81 this.exclude = value;
82 }
83
84 /**
85 * Gets the value of the type property.
86 *
87 * @return possible object is
88 * {@link String }
89 */
90 public String getType() {
91 return type;
92 }
93
94 /**
95 * Sets the value of the type property.
96 *
97 * @param value allowed object is
98 * {@link String }
99 */
100 public void setType(String value) {
101 this.type = value;
102 }
103
104 }