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