Coverage Report - org.kuali.student.contract.model.Service
 
Classes in this File Line Coverage Branch Coverage Complexity
Service
0%
0/25
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 Service
 23  
 {
 24  
 
 25  
  private String key;
 26  
 
 27  
  public String getKey ()
 28  
  {
 29  0
   return key;
 30  
  }
 31  
 
 32  
  public void setKey (String key)
 33  
  {
 34  0
   this.key = key;
 35  0
  }
 36  
 
 37  
  private String name;
 38  
 
 39  
  public String getName ()
 40  
  {
 41  0
   return name;
 42  
  }
 43  
 
 44  
  public void setName (String name)
 45  
  {
 46  0
   this.name = name;
 47  0
  }
 48  
 
 49  
  private String implProject;
 50  
 
 51  
  public String getImplProject ()
 52  
  {
 53  0
   return implProject;
 54  
  }
 55  
 
 56  
  public void setImplProject (String implProject)
 57  
  {
 58  0
   this.implProject = implProject;
 59  0
  }
 60  
 
 61  
  private String status;
 62  
 
 63  
  public String getStatus ()
 64  
  {
 65  0
   return status;
 66  
  }
 67  
 
 68  
  public void setStatus (String status)
 69  
  {
 70  0
   this.status = status;
 71  0
  }
 72  
 
 73  
  private String comments;
 74  
 
 75  
  public String getComments ()
 76  
  {
 77  0
   return comments;
 78  
  }
 79  
 
 80  
  public void setComments (String comments)
 81  
  {
 82  0
   this.comments = comments;
 83  0
  }
 84  
 
 85  
  private String version;
 86  
 
 87  
  public String getVersion ()
 88  
  {
 89  0
   return version;
 90  
  }
 91  
 
 92  
  public void setVersion (String version)
 93  
  {
 94  0
   this.version = version;
 95  0
  }
 96  
 
 97  
  private String url;
 98  
 
 99  
  public String getUrl ()
 100  
  {
 101  0
   return url;
 102  
  }
 103  
 
 104  
  public void setUrl (String url)
 105  
  {
 106  0
   this.url = url;
 107  0
  }
 108  
 
 109  
 
 110  
  private String includedServices;
 111  
 
 112  
  /**
 113  
   * Comma separated list of services that are included
 114  
   *
 115  
   * @return
 116  
   */
 117  
  public String getIncludedServices ()
 118  
  {
 119  0
   return includedServices;
 120  
  }
 121  
 
 122  
  /**
 123  
   * comma separated list of services that are included
 124  
   * @param includedServices
 125  
   */
 126  
  public void setIncludedServices (String includedServices)
 127  
  {
 128  0
   this.includedServices = includedServices;
 129  0
  }
 130  
 
 131  
 
 132  
 }