Coverage Report - org.kuali.student.contract.model.ServiceMethodRow
 
Classes in this File Line Coverage Branch Coverage Complexity
ServiceMethodRow
0%
0/19
N/A
1
 
 1  
 /*
 2  
  * Copyright 2010 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 ServiceMethodRow
 23  
 {
 24  
 
 25  
  private int rowNumber;
 26  
 
 27  
  public int getRowNumber ()
 28  
  {
 29  0
   return rowNumber;
 30  
  }
 31  
 
 32  
  public void setRowNumber (int rowNumber)
 33  
  {
 34  0
   this.rowNumber = rowNumber;
 35  0
  }
 36  
 
 37  
  private String service;
 38  
 
 39  
  public String getService ()
 40  
  {
 41  0
   return service;
 42  
  }
 43  
 
 44  
  public void setService (String service)
 45  
  {
 46  0
   this.service = service;
 47  0
  }
 48  
 
 49  
  private String key;
 50  
 
 51  
  public String getKey ()
 52  
  {
 53  0
   return key;
 54  
  }
 55  
 
 56  
  public void setKey (String key)
 57  
  {
 58  0
   this.key = key;
 59  0
  }
 60  
 
 61  
  private String shortName;
 62  
 
 63  
  public String getShortName ()
 64  
  {
 65  0
   return shortName;
 66  
  }
 67  
 
 68  
  public void setShortName (String shortName)
 69  
  {
 70  0
   this.shortName = shortName;
 71  0
  }
 72  
 
 73  
  protected String longName;
 74  
 
 75  
  /**
 76  
   * Get the value of longName
 77  
   *
 78  
   * @return the value of longName
 79  
   */
 80  
  public String getLongName ()
 81  
  {
 82  0
   return longName;
 83  
  }
 84  
 
 85  
  /**
 86  
   * Set the value of longName
 87  
   *
 88  
   * @param longName new value of longName
 89  
   */
 90  
  public void setLongName (String longName)
 91  
  {
 92  0
   this.longName = longName;
 93  0
  }
 94  
 
 95  
  private String description;
 96  
 
 97  
  public String getDescription ()
 98  
  {
 99  0
   return description;
 100  
  }
 101  
 
 102  
  public void setDescription (String description)
 103  
  {
 104  0
   this.description = description;
 105  0
  }
 106  
 
 107  
 }