View Javadoc

1   /*
2    * Copyright 2009 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may	obtain a copy of the License at
7    *
8    * 	http://www.osedu.org/licenses/ECL-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.student.contract.model;
17  
18  /**
19   *
20   * @author nwright
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  
39      public String getId() {
40          return id;
41      }
42  
43      public void setId(String id) {
44          this.id = id;
45      }
46  
47      public String getXmlObject() {
48          return xmlObject;
49      }
50  
51      public void setXmlObject(String xmlObject) {
52          this.xmlObject = xmlObject;
53      }
54  
55      public String getShortName() {
56          return shortName;
57      }
58  
59      public void setShortName(String shortName) {
60          this.shortName = shortName;
61      }
62  
63      public String getName() {
64          return name;
65      }
66  
67      public void setName(String name) {
68          this.name = name;
69      }
70  
71      public String getType() {
72          return type;
73      }
74  
75      public void setType(String type) {
76          this.type = type;
77      }
78  
79      public String getUrl() {
80          return url;
81      }
82  
83      public void setUrl(String url) {
84          this.url = url;
85      }
86  
87      public String getDescription() {
88          return description;
89      }
90  
91      public void setDescription(String description) {
92          this.description = description;
93      }
94  
95      public String getRequired() {
96          return required;
97      }
98  
99      public void setRequired(String required) {
100         this.required = required;
101     }
102 
103     public String getReadOnly() {
104         return readOnly;
105     }
106 
107     public void setReadOnly(String readOnly) {
108         this.readOnly = readOnly;
109     }
110 
111     public String getCardinality() {
112         return cardinality;
113     }
114 
115     public void setCardinality(String cardinality) {
116         this.cardinality = cardinality;
117     }
118 
119     public String getXmlAttribute() {
120         return xmlAttribute;
121     }
122 
123     public void setXmlAttribute(String xmlAttribute) {
124         this.xmlAttribute = xmlAttribute;
125     }
126 
127     public String getStatus() {
128         return status;
129     }
130 
131     public void setStatus(String status) {
132         this.status = status;
133     }
134 
135     public String getImplNotes() {
136         return implNotes;
137     }
138 
139     public void setImplNotes(String implNotes) {
140         this.implNotes = implNotes;
141     }
142 
143     public boolean isOverriden() {
144         return overriden;
145     }
146 
147     public void setOverriden(boolean overriden) {
148         this.overriden = overriden;
149     }
150 }