1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.contract.model;
17
18
19
20
21
22 public class MessageStructure {
23
24 private String id;
25 private String xmlObject;
26 private String shortName;
27 private String name;
28 private String type;
29 private String url;
30 private String description;
31 private String required;
32 private String readOnly;
33 private String cardinality;
34 private String status;
35 private String xmlAttribute;
36 private String implNotes;
37 private boolean overriden;
38 private boolean deprecated;
39
40 public String getId() {
41 return id;
42 }
43
44 public void setId(String id) {
45 this.id = id;
46 }
47
48 public String getXmlObject() {
49 return xmlObject;
50 }
51
52 public void setXmlObject(String xmlObject) {
53 this.xmlObject = xmlObject;
54 }
55
56 public String getShortName() {
57 return shortName;
58 }
59
60 public void setShortName(String shortName) {
61 this.shortName = shortName;
62 }
63
64 public String getName() {
65 return name;
66 }
67
68 public void setName(String name) {
69 this.name = name;
70 }
71
72 public String getType() {
73 return type;
74 }
75
76 public void setType(String type) {
77 this.type = type;
78 }
79
80 public String getUrl() {
81 return url;
82 }
83
84 public void setUrl(String url) {
85 this.url = url;
86 }
87
88 public String getDescription() {
89 return description;
90 }
91
92 public void setDescription(String description) {
93 this.description = description;
94 }
95
96 public String getRequired() {
97 return required;
98 }
99
100 public void setRequired(String required) {
101 this.required = required;
102 }
103
104 public String getReadOnly() {
105 return readOnly;
106 }
107
108 public void setReadOnly(String readOnly) {
109 this.readOnly = readOnly;
110 }
111
112 public String getCardinality() {
113 return cardinality;
114 }
115
116 public void setCardinality(String cardinality) {
117 this.cardinality = cardinality;
118 }
119
120 public String getXmlAttribute() {
121 return xmlAttribute;
122 }
123
124 public void setXmlAttribute(String xmlAttribute) {
125 this.xmlAttribute = xmlAttribute;
126 }
127
128 public String getStatus() {
129 return status;
130 }
131
132 public void setStatus(String status) {
133 this.status = status;
134 }
135
136 public String getImplNotes() {
137 return implNotes;
138 }
139
140 public void setImplNotes(String implNotes) {
141 this.implNotes = implNotes;
142 }
143
144 public boolean isOverriden() {
145 return overriden;
146 }
147
148 public void setOverriden(boolean overriden) {
149 this.overriden = overriden;
150 }
151
152 public boolean isDeprecated() {
153 return deprecated;
154 }
155
156 public void setDeprecated(boolean deprecated) {
157 this.deprecated = deprecated;
158 }
159
160 }