Coverage Report - edu.sampleu.travel.bo.TravelAccount
 
Classes in this File Line Coverage Branch Coverage Complexity
TravelAccount
0%
0/25
N/A
1
 
 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.core.api.util.type.KualiPercent;
 20  
 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
 21  
 
 22  
 import javax.persistence.CascadeType;
 23  
 import javax.persistence.Column;
 24  
 import javax.persistence.Entity;
 25  
 import javax.persistence.FetchType;
 26  
 import javax.persistence.Id;
 27  
 import javax.persistence.JoinColumn;
 28  
 import javax.persistence.ManyToOne;
 29  
 import javax.persistence.Table;
 30  
 import java.util.Date;
 31  
 
 32  
 @Entity
 33  
 @Table(name="TRV_ACCT")
 34  0
 public class TravelAccount extends PersistableBusinessObjectBase {
 35  
     
 36  
         private static final long serialVersionUID = -7739303391609093875L;
 37  
         
 38  
         @Id
 39  
         @Column(name="acct_num")
 40  
         private String number;
 41  
         
 42  
         private String subAccount;
 43  
     
 44  
         @Column(name="acct_name")
 45  
         private String name;
 46  
         
 47  
         private String subAccountName;
 48  
         
 49  
         private KualiPercent subsidizedPercent;
 50  
         
 51  
         private Date createDate;
 52  
     
 53  
         public Date getCreateDate() {
 54  0
         return this.createDate;
 55  
     }
 56  
 
 57  
     @Column(name="acct_fo_id")
 58  
         private Long foId;
 59  
     
 60  
     @ManyToOne(fetch=FetchType.EAGER, cascade={CascadeType.PERSIST, CascadeType.MERGE})
 61  
         @JoinColumn(name="acct_fo_id", insertable=false, updatable=false)
 62  
         private FiscalOfficer fiscalOfficer;  
 63  
     
 64  
     public String getName() {
 65  0
         return name;
 66  
     }
 67  
 
 68  
     public void setName(String name) {
 69  0
         this.name = name;
 70  0
     }
 71  
 
 72  
     public String getNumber() {
 73  0
         return number;
 74  
     }
 75  
 
 76  
     public void setNumber(String number) {
 77  0
         this.number = number;
 78  0
     }
 79  
 
 80  
     public FiscalOfficer getFiscalOfficer() {
 81  0
         return fiscalOfficer;
 82  
     }
 83  
 
 84  
     public void setFiscalOfficer(FiscalOfficer fiscalOfficer) {
 85  0
         this.fiscalOfficer = fiscalOfficer;
 86  0
     }
 87  
 
 88  
     public Long getFoId() {
 89  0
         return foId;
 90  
     }
 91  
 
 92  
     public void setFoId(Long foId) {
 93  0
         this.foId = foId;
 94  0
     }
 95  
 
 96  
     public String getSubAccount() {
 97  0
         return this.subAccount;
 98  
     }
 99  
 
 100  
     public void setSubAccount(String subAccount) {
 101  0
         this.subAccount = subAccount;
 102  0
     }
 103  
 
 104  
     public String getSubAccountName() {
 105  0
         return this.subAccountName;
 106  
     }
 107  
 
 108  
     public void setSubAccountName(String subAccountName) {
 109  0
         this.subAccountName = subAccountName;
 110  0
     }
 111  
 
 112  
     public KualiPercent getSubsidizedPercent() {
 113  0
         return this.subsidizedPercent;
 114  
     }
 115  
 
 116  
     public void setSubsidizedPercent(KualiPercent subsidizedPercent) {
 117  0
         this.subsidizedPercent = subsidizedPercent;
 118  0
     }
 119  
 
 120  
     public void setCreateDate(Date createDate) {
 121  0
         this.createDate = createDate;
 122  0
     }
 123  
     
 124  
 }