Clover Coverage Report - sampleapp 2.0.0-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
7   67   7   1
0   39   1   7
7     1  
1    
 
  TravelAccountUseRate       Line # 28 7 0% 7 14 0% 0.0
 
No Tests
 
1    /*
2    * Copyright 2007-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.opensource.org/licenses/ecl2.php
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 edu.sampleu.travel.bo;
17   
18    import org.kuali.rice.core.util.type.KualiPercent;
19    import org.kuali.rice.kns.bo.InactivatableFromToImpl;
20   
21    import javax.persistence.Column;
22    import javax.persistence.Entity;
23    import javax.persistence.Id;
24    import javax.persistence.Table;
25   
26    @Entity
27    @Table(name = "TRV_ACCT_USE_RT")
 
28    public class TravelAccountUseRate extends InactivatableFromToImpl {
29   
30    @Id
31    @Column(name = "id")
32    private String id;
33   
34    @Column(name = "acct_num")
35    private String number;
36   
37    @Column(name = "rate")
38    private KualiPercent rate;
39   
 
40  0 toggle public TravelAccountUseRate() {
41  0 super();
42    }
43   
 
44  0 toggle public String getId() {
45  0 return this.id;
46    }
47   
 
48  0 toggle public void setId(String id) {
49  0 this.id = id;
50    }
51   
 
52  0 toggle public String getNumber() {
53  0 return this.number;
54    }
55   
 
56  0 toggle public void setNumber(String number) {
57  0 this.number = number;
58    }
59   
 
60  0 toggle public KualiPercent getRate() {
61  0 return this.rate;
62    }
63   
 
64  0 toggle public void setRate(KualiPercent rate) {
65  0 this.rate = rate;
66    }
67    }