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
6   63   6   1
0   33   1   6
6     1  
1    
 
  TravelAccountExtension       Line # 25 6 0% 6 12 0% 0.0
 
No Tests
 
1    /*
2    * Copyright 2006-2008 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.PersistableBusinessObjectExtensionBase;
20   
21    import javax.persistence.*;
22   
23    @Entity
24    @Table(name="TRV_ACCT_EXT")
 
25    public class TravelAccountExtension extends PersistableBusinessObjectExtensionBase {
26   
27    @Id
28    @Column(name="acct_num")
29    private String number;
30   
31    @Column(name="acct_type")
32    private String accountTypeCode;
33   
34    @OneToOne(fetch=FetchType.EAGER)
35    @JoinColumn(name="acct_type", insertable=false, updatable=false)
36    private TravelAccountType accountType;
37   
 
38  0 toggle public String getNumber() {
39  0 return number;
40    }
41   
 
42  0 toggle public void setNumber(String number) {
43  0 this.number = number;
44    }
45   
 
46  0 toggle public String getAccountTypeCode() {
47  0 return accountTypeCode;
48    }
49   
 
50  0 toggle public void setAccountTypeCode(String accountTypeCode) {
51  0 this.accountTypeCode = accountTypeCode;
52    }
53   
 
54  0 toggle public TravelAccountType getAccountType() {
55  0 return accountType;
56    }
57   
 
58  0 toggle public void setAccountType(TravelAccountType accountType) {
59  0 this.accountType = accountType;
60    }
61   
62   
63    }