Clover Coverage Report - KS Contract Documentation Generator 0.0.1-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
28   150   28   1
0   101   1   28
28     1  
1    
 
  MessageStructure       Line # 22 28 0% 28 56 0% 0.0
 
No Tests
 
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  0 toggle public String getId() {
40  0 return id;
41    }
42   
 
43  0 toggle public void setId(String id) {
44  0 this.id = id;
45    }
46   
 
47  0 toggle public String getXmlObject() {
48  0 return xmlObject;
49    }
50   
 
51  0 toggle public void setXmlObject(String xmlObject) {
52  0 this.xmlObject = xmlObject;
53    }
54   
 
55  0 toggle public String getShortName() {
56  0 return shortName;
57    }
58   
 
59  0 toggle public void setShortName(String shortName) {
60  0 this.shortName = shortName;
61    }
62   
 
63  0 toggle public String getName() {
64  0 return name;
65    }
66   
 
67  0 toggle public void setName(String name) {
68  0 this.name = name;
69    }
70   
 
71  0 toggle public String getType() {
72  0 return type;
73    }
74   
 
75  0 toggle public void setType(String type) {
76  0 this.type = type;
77    }
78   
 
79  0 toggle public String getUrl() {
80  0 return url;
81    }
82   
 
83  0 toggle public void setUrl(String url) {
84  0 this.url = url;
85    }
86   
 
87  0 toggle public String getDescription() {
88  0 return description;
89    }
90   
 
91  0 toggle public void setDescription(String description) {
92  0 this.description = description;
93    }
94   
 
95  0 toggle public String getRequired() {
96  0 return required;
97    }
98   
 
99  0 toggle public void setRequired(String required) {
100  0 this.required = required;
101    }
102   
 
103  0 toggle public String getReadOnly() {
104  0 return readOnly;
105    }
106   
 
107  0 toggle public void setReadOnly(String readOnly) {
108  0 this.readOnly = readOnly;
109    }
110   
 
111  0 toggle public String getCardinality() {
112  0 return cardinality;
113    }
114   
 
115  0 toggle public void setCardinality(String cardinality) {
116  0 this.cardinality = cardinality;
117    }
118   
 
119  0 toggle public String getXmlAttribute() {
120  0 return xmlAttribute;
121    }
122   
 
123  0 toggle public void setXmlAttribute(String xmlAttribute) {
124  0 this.xmlAttribute = xmlAttribute;
125    }
126   
 
127  0 toggle public String getStatus() {
128  0 return status;
129    }
130   
 
131  0 toggle public void setStatus(String status) {
132  0 this.status = status;
133    }
134   
 
135  0 toggle public String getImplNotes() {
136  0 return implNotes;
137    }
138   
 
139  0 toggle public void setImplNotes(String implNotes) {
140  0 this.implNotes = implNotes;
141    }
142   
 
143  0 toggle public boolean isOverriden() {
144  0 return overriden;
145    }
146   
 
147  0 toggle public void setOverriden(boolean overriden) {
148  0 this.overriden = overriden;
149    }
150    }