Coverage Report - edu.sampleu.financial.bo.ShippingPaymentTerms
 
Classes in this File Line Coverage Branch Coverage Complexity
ShippingPaymentTerms
0%
0/14
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 java.util.LinkedHashMap;
 20  
 
 21  
 import org.kuali.rice.kns.bo.Inactivateable;
 22  
 import org.kuali.rice.kns.bo.PersistableBusinessObjectBase;
 23  
 
 24  
 /**
 25  
  * Payment Terms for Shipping from a particular Vendor. Per Vendor as distinct from <code>PaymentTermType</code>.
 26  
  *
 27  
  * @see org.kuali.kfs.vnd.businessobject.PaymentTermType
 28  
  */
 29  
 public class ShippingPaymentTerms extends PersistableBusinessObjectBase implements Inactivateable {
 30  
 
 31  
     private String vendorShippingPaymentTermsCode;
 32  
     private String vendorShippingPaymentTermsDescription;
 33  
     private boolean vendorShippingPaymentTermsPayIndicator;
 34  
     private boolean active;
 35  
 
 36  
     /**
 37  
      * Default constructor.
 38  
      */
 39  
     public ShippingPaymentTerms() {
 40  0
         super();
 41  0
     }
 42  
 
 43  
     public String getVendorShippingPaymentTermsCode() {
 44  
 
 45  0
         return vendorShippingPaymentTermsCode;
 46  
     }
 47  
 
 48  
     public void setVendorShippingPaymentTermsCode(String vendorShippingPaymentTermsCode) {
 49  0
         this.vendorShippingPaymentTermsCode = vendorShippingPaymentTermsCode;
 50  0
     }
 51  
 
 52  
     public String getVendorShippingPaymentTermsDescription() {
 53  
 
 54  0
         return vendorShippingPaymentTermsDescription;
 55  
     }
 56  
 
 57  
     public void setVendorShippingPaymentTermsDescription(String vendorShippingPaymentTermsDescription) {
 58  0
         this.vendorShippingPaymentTermsDescription = vendorShippingPaymentTermsDescription;
 59  0
     }
 60  
 
 61  
     public boolean getVendorShippingPaymentTermsPayIndicator() {
 62  
 
 63  0
         return vendorShippingPaymentTermsPayIndicator;
 64  
     }
 65  
 
 66  
     public void setVendorShippingPaymentTermsPayIndicator(boolean vendorShippingPaymentTermsPayIndicator) {
 67  0
         this.vendorShippingPaymentTermsPayIndicator = vendorShippingPaymentTermsPayIndicator;
 68  0
     }
 69  
 
 70  
     public boolean isActive() {
 71  
 
 72  0
         return active;
 73  
     }
 74  
 
 75  
     public void setActive(boolean active) {
 76  0
         this.active = active;
 77  0
     }
 78  
 }