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  import org.kuali.rice.core.api.criteria.QueryByCriteria;
19  
20  /**
21   *
22   * @author nwright
23   */
24  public class MessageStructure {
25  
26      private String id;
27      private String xmlObject;
28      private String shortName;
29      private String name;
30      private String type;
31      private String url;
32      private String description;
33      private String required;
34      private String readOnly;
35      private String cardinality;
36      private String status;
37      private String xmlAttribute;
38      private String implNotes;
39      private boolean overriden;
40      private boolean deprecated;
41      private Lookup lookup;
42      private boolean primaryKey;
43  
44      public String getId() {
45          return id;
46      }
47  
48      public void setId(String id) {
49          this.id = id;
50      }
51  
52      public String getXmlObject() {
53          return xmlObject;
54      }
55  
56      public void setXmlObject(String xmlObject) {
57          this.xmlObject = xmlObject;
58      }
59  
60      public String getShortName() {
61          return shortName;
62      }
63  
64      public void setShortName(String shortName) {
65          this.shortName = shortName;
66      }
67  
68      public String getName() {
69          return name;
70      }
71  
72      public void setName(String name) {
73          this.name = name;
74      }
75  
76      public String getType() {
77          return type;
78      }
79  
80      public void setType(String type) {
81          this.type = type;
82      }
83  
84      public String getUrl() {
85          return url;
86      }
87  
88      public void setUrl(String url) {
89          this.url = url;
90      }
91  
92      public String getDescription() {
93          return description;
94      }
95  
96      public void setDescription(String description) {
97          this.description = description;
98      }
99  
100     public String getRequired() {
101         return required;
102     }
103 
104     public void setRequired(String required) {
105         this.required = required;
106     }
107 
108     public String getReadOnly() {
109         return readOnly;
110     }
111 
112     public void setReadOnly(String readOnly) {
113         this.readOnly = readOnly;
114     }
115 
116     public String getCardinality() {
117         return cardinality;
118     }
119 
120     public void setCardinality(String cardinality) {
121         this.cardinality = cardinality;
122     }
123 
124     public String getXmlAttribute() {
125         return xmlAttribute;
126     }
127 
128     public void setXmlAttribute(String xmlAttribute) {
129         this.xmlAttribute = xmlAttribute;
130     }
131 
132     public String getStatus() {
133         return status;
134     }
135 
136     public void setStatus(String status) {
137         this.status = status;
138     }
139 
140     public String getImplNotes() {
141         return implNotes;
142     }
143 
144     public void setImplNotes(String implNotes) {
145         this.implNotes = implNotes;
146     }
147 
148     public boolean isOverriden() {
149         return overriden;
150     }
151 
152     public void setOverriden(boolean overriden) {
153         this.overriden = overriden;
154     }
155 
156     public boolean isDeprecated() {
157         return deprecated;
158     }
159 
160     public void setDeprecated(boolean deprecated) {
161         this.deprecated = deprecated;
162     }
163 
164     public Lookup getLookup() {
165         return lookup;
166     }
167 
168     public void setLookup(Lookup lookup) {
169         this.lookup = lookup;
170     }
171 
172     public boolean isPrimaryKey() {
173         return primaryKey;
174     }
175 
176     public void setPrimaryKey(boolean primaryKey) {
177         this.primaryKey = primaryKey;
178     }  
179     
180 	@Override
181 	public String toString() {
182 		return "MessageStructure [xmlObject=" + xmlObject + "]";
183 	}
184    
185     
186 }