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
8   75   8   1
0   42   1   8
8     1  
1    
 
  TravelAccount       Line # 25 8 0% 8 16 0% 0.0
 
No Tests
 
1    /*
2    * Copyright 2006-2007 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   
17    package edu.sampleu.travel.bo;
18   
19    import org.kuali.rice.kns.bo.PersistableBusinessObjectBase;
20   
21    import javax.persistence.*;
22   
23    @Entity
24    @Table(name="TRV_ACCT")
 
25    public class TravelAccount extends PersistableBusinessObjectBase {
26   
27    private static final long serialVersionUID = -7739303391609093875L;
28   
29    @Id
30    @Column(name="acct_num")
31    private String number;
32   
33    @Column(name="acct_name")
34    private String name;
35   
36    @Column(name="acct_fo_id")
37    private Long foId;
38   
39    @ManyToOne(fetch=FetchType.EAGER, cascade={CascadeType.PERSIST, CascadeType.MERGE})
40    @JoinColumn(name="acct_fo_id", insertable=false, updatable=false)
41    private FiscalOfficer fiscalOfficer;
42   
 
43  0 toggle public String getName() {
44  0 return name;
45    }
46   
 
47  0 toggle public void setName(String name) {
48  0 this.name = name;
49    }
50   
 
51  0 toggle public String getNumber() {
52  0 return number;
53    }
54   
 
55  0 toggle public void setNumber(String number) {
56  0 this.number = number;
57    }
58   
 
59  0 toggle public FiscalOfficer getFiscalOfficer() {
60  0 return fiscalOfficer;
61    }
62   
 
63  0 toggle public void setFiscalOfficer(FiscalOfficer fiscalOfficer) {
64  0 this.fiscalOfficer = fiscalOfficer;
65    }
66   
 
67  0 toggle public Long getFoId() {
68  0 return foId;
69    }
70   
 
71  0 toggle public void setFoId(Long foId) {
72  0 this.foId = foId;
73    }
74   
75    }