Coverage Report - edu.sampleu.financial.bo.PaymentTermType
 
Classes in this File Line Coverage Branch Coverage Complexity
PaymentTermType
0%
0/26
N/A
1
 
 1  
 /*
 2  
  * Copyright 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.financial.bo;
 18  
 
 19  
 import org.kuali.rice.krad.bo.MutableInactivatable;
 20  
 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
 21  
 
 22  
 import java.math.BigDecimal;
 23  
 
 24  
 /**
 25  
  * Types of Payment Terms for Vendor Contracts. Per contract as distinct from <code>ShippingPaymentTerms</code>.
 26  
  *
 27  
  * @see org.kuali.kfs.vnd.businessobject.ShippingPaymentTerms
 28  
  */
 29  
 public class PaymentTermType extends PersistableBusinessObjectBase implements MutableInactivatable {
 30  
 
 31  
     private String vendorPaymentTermsCode;
 32  
     private String vendorDiscountDueTypeDescription;
 33  
     private Integer vendorDiscountDueNumber;
 34  
     private BigDecimal vendorPaymentTermsPercent;
 35  
     private String vendorNetDueTypeDescription;
 36  
     private Integer vendorNetDueNumber;
 37  
     private String vendorPaymentTermsDescription;
 38  
     private boolean active;
 39  
 
 40  
     /**
 41  
      * Default constructor.
 42  
      */
 43  
     public PaymentTermType() {
 44  0
         super();
 45  0
     }
 46  
 
 47  
     public String getVendorPaymentTermsCode() {
 48  
 
 49  0
         return vendorPaymentTermsCode;
 50  
     }
 51  
 
 52  
     public void setVendorPaymentTermsCode(String vendorPaymentTermsCode) {
 53  0
         this.vendorPaymentTermsCode = vendorPaymentTermsCode;
 54  0
     }
 55  
 
 56  
     public String getVendorDiscountDueTypeDescription() {
 57  
 
 58  0
         return vendorDiscountDueTypeDescription;
 59  
     }
 60  
 
 61  
     public void setVendorDiscountDueTypeDescription(String vendorDiscountDueTypeDescription) {
 62  0
         this.vendorDiscountDueTypeDescription = vendorDiscountDueTypeDescription;
 63  0
     }
 64  
 
 65  
     public Integer getVendorDiscountDueNumber() {
 66  
 
 67  0
         return vendorDiscountDueNumber;
 68  
     }
 69  
 
 70  
     public void setVendorDiscountDueNumber(Integer vendorDiscountDueNumber) {
 71  0
         this.vendorDiscountDueNumber = vendorDiscountDueNumber;
 72  0
     }
 73  
 
 74  
     public BigDecimal getVendorPaymentTermsPercent() {
 75  
 
 76  0
         return vendorPaymentTermsPercent;
 77  
     }
 78  
 
 79  
     public void setVendorPaymentTermsPercent(BigDecimal vendorPaymentTermsPercent) {
 80  0
         this.vendorPaymentTermsPercent = vendorPaymentTermsPercent;
 81  0
     }
 82  
 
 83  
     public String getVendorNetDueTypeDescription() {
 84  
 
 85  0
         return vendorNetDueTypeDescription;
 86  
     }
 87  
 
 88  
     public void setVendorNetDueTypeDescription(String vendorNetDueTypeDescription) {
 89  0
         this.vendorNetDueTypeDescription = vendorNetDueTypeDescription;
 90  0
     }
 91  
 
 92  
     public Integer getVendorNetDueNumber() {
 93  
 
 94  0
         return vendorNetDueNumber;
 95  
     }
 96  
 
 97  
     public void setVendorNetDueNumber(Integer vendorNetDueNumber) {
 98  0
         this.vendorNetDueNumber = vendorNetDueNumber;
 99  0
     }
 100  
 
 101  
     public String getVendorPaymentTermsDescription() {
 102  
 
 103  0
         return vendorPaymentTermsDescription;
 104  
     }
 105  
 
 106  
     public void setVendorPaymentTermsDescription(String vendorPaymentTermsDescription) {
 107  0
         this.vendorPaymentTermsDescription = vendorPaymentTermsDescription;
 108  0
     }
 109  
 
 110  
     public boolean isActive() {
 111  
 
 112  0
         return active;
 113  
     }
 114  
 
 115  
     public void setActive(boolean active) {
 116  0
         this.active = active;
 117  0
     }
 118  
 
 119  
 }