Coverage Report - org.apache.maven.jira.JiraIssue
 
Classes in this File Line Coverage Branch Coverage Complexity
JiraIssue
89% 
N/A 
1
 
 1  
 package org.apache.maven.jira;
 2  
 
 3  
 /*
 4  
  * Copyright 2001-2006 The Apache Software Foundation.
 5  
  *
 6  
  * Licensed under the Apache License, Version 2.0 (the "License");
 7  
  * you may not use this file except in compliance with the License.
 8  
  * You may obtain a copy of the License at
 9  
  *
 10  
  *      http://www.apache.org/licenses/LICENSE-2.0
 11  
  *
 12  
  * Unless required by applicable law or agreed to in writing, software
 13  220
  * distributed under the License is distributed on an "AS IS" BASIS,
 14  220
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 15  
  * See the License for the specific language governing permissions and
 16  
  * limitations under the License.
 17  
  */
 18  44
 
 19  
 /**
 20  
  * A JIRA issue.
 21  
  *
 22  
  * @version $Id: org.apache.maven.jira.JiraIssue.html 816584 2012-05-08 12:33:35Z hboutemy $
 23  44
  */
 24  44
 public class JiraIssue
 25  
 {
 26  
     private String key;
 27  
     private String link;
 28  0
     private String summary;
 29  
     private String status;
 30  
     private String resolution;
 31  
     private String assignee;
 32  
 
 33  0
     public JiraIssue(  )
 34  220
     {
 35  220
     }
 36  
 
 37  
     public String getKey(  )
 38  44
     {
 39  44
         return key;
 40  
     }
 41  
 
 42  
     public void setKey( String key )
 43  44
     {
 44  88
         this.key = key;
 45  44
     }
 46  
 
 47  
     public String getLink(  )
 48  44
     {
 49  0
         return link;
 50  
     }
 51  
 
 52  
     public void setLink( String link )
 53  44
     {
 54  44
         this.link = link;
 55  0
     }
 56  
 
 57  
     public String getSummary(  )
 58  44
     {
 59  44
         return summary;
 60  
     }
 61  
 
 62  
     public void setSummary( String summary )
 63  44
     {
 64  88
         this.summary = summary;
 65  44
     }
 66  
 
 67  
     public String getStatus(  )
 68  44
     {
 69  44
         return status;
 70  
     }
 71  
 
 72  
     public void setStatus( String status )
 73  44
     {
 74  88
         this.status = status;
 75  44
     }
 76  
 
 77  
     public String getResolution(  )
 78  
     {
 79  44
         return resolution;
 80  
     }
 81  
 
 82  
     public void setResolution( String resolution )
 83  
     {
 84  44
         this.resolution = resolution;
 85  44
     }
 86  
 
 87  
     public String getAssignee(  )
 88  
     {
 89  44
         return assignee;
 90  
     }
 91  
 
 92  
     public void setAssignee( String assignee )
 93  
     {
 94  44
         this.assignee = assignee;
 95  44
     }
 96  
 }