Coverage Report - org.kuali.student.contract.model.MessageStructure
 
Classes in this File Line Coverage Branch Coverage Complexity
MessageStructure
0%
0/40
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  
 
 25  
  private String id;
 26  
 
 27  
  public String getId ()
 28  
  {
 29  0
   return id;
 30  
  }
 31  
 
 32  
  public void setId (String id)
 33  
  {
 34  0
   this.id = id;
 35  0
  }
 36  
  private String xmlObject;
 37  
 
 38  
  public String getXmlObject ()
 39  
  {
 40  0
   return xmlObject;
 41  
  }
 42  
 
 43  
  public void setXmlObject (String xmlObject)
 44  
  {
 45  0
   this.xmlObject = xmlObject;
 46  0
  }
 47  
  private String shortName;
 48  
 
 49  
  public String getShortName ()
 50  
  {
 51  0
   return shortName;
 52  
  }
 53  
 
 54  
  public void setShortName (String shortName)
 55  
  {
 56  0
   this.shortName = shortName;
 57  0
  }
 58  
  private String name;
 59  
 
 60  
  public String getName ()
 61  
  {
 62  0
   return name;
 63  
  }
 64  
 
 65  
  public void setName (String name)
 66  
  {
 67  0
   this.name = name;
 68  0
  }
 69  
  private String type;
 70  
 
 71  
  public String getType ()
 72  
  {
 73  0
   return type;
 74  
  }
 75  
 
 76  
  public void setType (String type)
 77  
  {
 78  0
   this.type = type;
 79  0
  }
 80  
  private String url;
 81  
 
 82  
  public String getUrl ()
 83  
  {
 84  0
   return url;
 85  
  }
 86  
 
 87  
  public void setUrl (String url)
 88  
  {
 89  0
   this.url = url;
 90  0
  }
 91  
  private String description;
 92  
 
 93  
  public String getDescription ()
 94  
  {
 95  0
   return description;
 96  
  }
 97  
 
 98  
  public void setDescription (String description)
 99  
  {
 100  0
   this.description = description;
 101  0
  }
 102  
  private String required;
 103  
 
 104  
  public String getRequired ()
 105  
  {
 106  0
   return required;
 107  
  }
 108  
 
 109  
  public void setRequired (String required)
 110  
  {
 111  0
   this.required = required;
 112  0
  }
 113  
  private String optional;
 114  
 
 115  
  public String getOptional ()
 116  
  {
 117  0
   return optional;
 118  
  }
 119  
 
 120  
  public void setOptional (String optional)
 121  
  {
 122  0
   this.optional = optional;
 123  0
  }
 124  
  private String cardinality;
 125  
 
 126  
  public String getCardinality ()
 127  
  {
 128  0
   return cardinality;
 129  
  }
 130  
 
 131  
  public void setCardinality (String cardinality)
 132  
  {
 133  0
   this.cardinality = cardinality;
 134  0
  }
 135  
  private String xmlAttribute;
 136  
 
 137  
  public String getXmlAttribute ()
 138  
  {
 139  0
   return xmlAttribute;
 140  
  }
 141  
 
 142  
  public void setXmlAttribute (String xmlAttribute)
 143  
  {
 144  0
   this.xmlAttribute = xmlAttribute;
 145  0
  }
 146  
  private String status;
 147  
 
 148  
  public String getStatus ()
 149  
  {
 150  0
   return status;
 151  
  }
 152  
 
 153  
  public void setStatus (String status)
 154  
  {
 155  0
   this.status = status;
 156  0
  }
 157  
  private String feedback;
 158  
 
 159  
  public String getFeedback ()
 160  
  {
 161  0
   return feedback;
 162  
  }
 163  
 
 164  
  public void setFeedback (String feedback)
 165  
  {
 166  0
   this.feedback = feedback;
 167  0
  }
 168  
 }