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
15   99   12   1.5
4   57   0.8   10
10     1.2  
1    
 
  FiscalOfficer       Line # 33 15 0% 12 29 0% 0.0
 
No Tests
 
1    /*
2    * Copyright 2007-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    package edu.sampleu.travel.bo;
17   
18    import org.apache.commons.lang.ObjectUtils;
19    import org.apache.commons.lang.StringUtils;
20    import org.apache.commons.lang.builder.HashCodeBuilder;
21    import org.kuali.rice.core.framework.persistence.jpa.annotations.Sequence;
22    import org.kuali.rice.kns.bo.PersistableBusinessObjectBase;
23   
24    import javax.persistence.*;
25    import java.util.List;
26   
27    /**
28    * FiscalOfficer
29    */
30    @Entity
31    @Table(name="TRV_ACCT_FO")
32    @Sequence(name="seq_acct_fo_id", property="id")
 
33    public class FiscalOfficer extends PersistableBusinessObjectBase {
34   
35    private static final long serialVersionUID = -4645124696676896963L;
36   
37    @Id
38    @Column(name="acct_fo_id")
39    private Long id;
40   
41    @Column(name="acct_fo_user_name")
42    private String userName;
43   
44    @Column(name="acct_fo_user_name")
45    private String firstName;
46   
47    @OneToMany(cascade={CascadeType.PERSIST, CascadeType.MERGE}, fetch=FetchType.EAGER, mappedBy="fiscalOfficer")
48    private List<TravelAccount> accounts;
49   
50    /**
51    * @return the firstName
52    */
 
53  0 toggle public String getFirstName() {
54  0 return this.firstName;
55    }
56   
57    /**
58    * @param firstName the firstName to set
59    */
 
60  0 toggle public void setFirstName(String firstName) {
61  0 this.firstName = firstName;
62    }
63   
 
64  0 toggle public void setUserName(String userId) {
65  0 userName = userId;
66    }
67   
 
68  0 toggle public String getUserName() {
69  0 return userName;
70    }
71   
 
72  0 toggle public final boolean equals(Object o) {
73  0 if (o == null) return false;
74  0 if (!(o instanceof FiscalOfficer)) return false;
75  0 FiscalOfficer f = (FiscalOfficer) o;
76  0 return StringUtils.equals(userName, f.getUserName()) &&
77    ObjectUtils.equals(id, f.getId());
78    }
79   
 
80  0 toggle public int hashCode() {
81  0 return new HashCodeBuilder().append(id).append(userName).toHashCode();
82    }
83   
 
84  0 toggle public Long getId() {
85  0 return id;
86    }
87   
 
88  0 toggle public void setId(Long id) {
89  0 this.id = id;
90    }
91   
 
92  0 toggle public List<TravelAccount> getAccounts() {
93  0 return accounts;
94    }
95   
 
96  0 toggle public void setAccounts(List<TravelAccount> accounts) {
97  0 this.accounts = accounts;
98    }
99    }