Coverage report

  %line %branch
org.apache.jetspeed.audit.impl.ActivityBean
0% 
0% 

 1  
 /*
 2  
  * Licensed to the Apache Software Foundation (ASF) under one or more
 3  
  * contributor license agreements.  See the NOTICE file distributed with
 4  
  * this work for additional information regarding copyright ownership.
 5  
  * The ASF licenses this file to You under the Apache License, Version 2.0
 6  
  * (the "License"); you may not use this file except in compliance with
 7  
  * the License.  You may obtain a copy of the License at
 8  
  * 
 9  
  *      http://www.apache.org/licenses/LICENSE-2.0
 10  
  * 
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */
 17  
 package org.apache.jetspeed.audit.impl;
 18  
 
 19  
 import java.sql.Timestamp;
 20  
 
 21  0
 public class ActivityBean
 22  
 {
 23  
     private String activity;
 24  
     private String category;
 25  
     private String admin;
 26  
     private String userName;
 27  
     private Timestamp timestamp;
 28  
     private String ipAddress;
 29  
     private String name;
 30  
     private String beforeValue;
 31  
     private String afterValue;
 32  
     private String description;
 33  
     
 34  
     public String getActivity()
 35  
     {
 36  0
         return activity;
 37  
     }
 38  
     
 39  
     public void setActivity(String activity)
 40  
     {
 41  0
         this.activity = activity;
 42  0
     }
 43  
     
 44  
     public String getAdmin()
 45  
     {
 46  0
         return admin;
 47  
     }
 48  
     
 49  
     public void setAdmin(String admin)
 50  
     {
 51  0
         this.admin = admin;
 52  0
     }
 53  
     
 54  
     public String getCategory()
 55  
     {
 56  0
         return category;
 57  
     }
 58  
     
 59  
     public void setCategory(String category)
 60  
     {
 61  0
         this.category = category;
 62  0
     }
 63  
     
 64  
     public String getDescription()
 65  
     {
 66  0
         return description;
 67  
     }
 68  
     
 69  
     public void setDescription(String description)
 70  
     {
 71  0
         this.description = description;
 72  0
     }
 73  
     
 74  
     public String getIpAddress()
 75  
     {
 76  0
         return ipAddress;
 77  
     }
 78  
     
 79  
     public void setIpAddress(String ipAddress)
 80  
     {
 81  0
         this.ipAddress = ipAddress;
 82  0
     }
 83  
     
 84  
     public String getName()
 85  
     {
 86  0
         return name;
 87  
     }
 88  
     
 89  
     public void setName(String name)
 90  
     {
 91  0
         this.name = name;
 92  0
     }
 93  
     
 94  
     public Timestamp getTimestamp()
 95  
     {
 96  0
         return timestamp;
 97  
     }
 98  
     
 99  
     public void setTimestamp(Timestamp timestamp)
 100  
     {
 101  0
         this.timestamp = timestamp;
 102  0
     }
 103  
     
 104  
     public String getUserName()
 105  
     {
 106  0
         return userName;
 107  
     }
 108  
     
 109  
     public void setUserName(String userName)
 110  
     {
 111  0
         this.userName = userName;
 112  0
     }
 113  
 
 114  
     
 115  
     public String getAfterValue()
 116  
     {
 117  0
         return afterValue;
 118  
     }
 119  
 
 120  
     
 121  
     public void setAfterValue(String afterValue)
 122  
     {
 123  0
         this.afterValue = afterValue;
 124  0
     }
 125  
 
 126  
     
 127  
     public String getBeforeValue()
 128  
     {
 129  0
         return beforeValue;
 130  
     }
 131  
 
 132  
     
 133  
     public void setBeforeValue(String beforeValue)
 134  
     {
 135  0
         this.beforeValue = beforeValue;
 136  0
     }
 137  
     
 138  
 }

This report is generated by jcoverage, Maven and Maven JCoverage Plugin.