Coverage Report - edu.sampleu.travel.dto.TravelAccountInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
TravelAccountInfo
0%
0/28
N/A
1
 
 1  
 /*
 2  
  * Copyright 2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 1.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/ecl1.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.dto;
 17  
 
 18  
 import java.io.Serializable;
 19  
 import java.util.Date;
 20  
 
 21  
 import org.kuali.rice.core.util.type.KualiPercent;
 22  
 
 23  
 /**
 24  
  * 
 25  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 26  
  */
 27  0
 public class TravelAccountInfo implements Serializable {
 28  
     
 29  
     private String number;
 30  
     private String subAccount;
 31  
     private String name;
 32  
     private String subAccountName;
 33  
     private KualiPercent subsidizedPercent;
 34  
     private Date createDate;
 35  
     private Long foId;
 36  
     private String objectId;
 37  
     private Long versionNumber;
 38  
     
 39  
     
 40  
     public String getNumber() {
 41  0
         return this.number;
 42  
     }
 43  
     
 44  
     public void setNumber(String number) {
 45  0
         this.number = number;
 46  0
     }
 47  
     
 48  
     public String getSubAccount() {
 49  0
         return this.subAccount;
 50  
     }
 51  
     
 52  
     public void setSubAccount(String subAccount) {
 53  0
         this.subAccount = subAccount;
 54  0
     }
 55  
     
 56  
     public String getName() {
 57  0
         return this.name;
 58  
     }
 59  
     
 60  
     public void setName(String name) {
 61  0
         this.name = name;
 62  0
     }
 63  
     
 64  
     public String getSubAccountName() {
 65  0
         return this.subAccountName;
 66  
     }
 67  
     
 68  
     public void setSubAccountName(String subAccountName) {
 69  0
         this.subAccountName = subAccountName;
 70  0
     }
 71  
     
 72  
     public KualiPercent getSubsidizedPercent() {
 73  0
         return this.subsidizedPercent;
 74  
     }
 75  
     
 76  
     public void setSubsidizedPercent(KualiPercent subsidizedPercent) {
 77  0
         this.subsidizedPercent = subsidizedPercent;
 78  0
     }
 79  
     
 80  
     public Date getCreateDate() {
 81  0
         return this.createDate;
 82  
     }
 83  
     
 84  
     public void setCreateDate(Date createDate) {
 85  0
         this.createDate = createDate;
 86  0
     }
 87  
     
 88  
     public Long getFoId() {
 89  0
         return this.foId;
 90  
     }
 91  
     
 92  
     public void setFoId(Long foId) {
 93  0
         this.foId = foId;
 94  0
     }
 95  
 
 96  
     public String getObjectId() {
 97  0
         return this.objectId;
 98  
     }
 99  
 
 100  
     public void setObjectId(String objectId) {
 101  0
         this.objectId = objectId;
 102  0
     }
 103  
 
 104  
     public Long getVersionNumber() {
 105  0
         return this.versionNumber;
 106  
     }
 107  
 
 108  
     public void setVersionNumber(Long versionNumber) {
 109  0
         this.versionNumber = versionNumber;
 110  0
     }
 111  
     
 112  
 }