001/* 002 * Copyright 2013 The Kuali Foundation. 003 * 004 * Licensed under the Educational Community License, Version 1.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl1.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package org.kuali.ole.select.businessobject; 017 018import org.kuali.ole.fp.businessobject.DisbursementVoucherPayeeDetail; 019 020public class OleDisbursementVoucherPayeeDetail extends DisbursementVoucherPayeeDetail { 021 022 private Boolean disbVchrDepositAccount; 023 private String vendorAliasName; 024 025 /** 026 * Default no-arg constructor. 027 */ 028 public OleDisbursementVoucherPayeeDetail() { 029 super(); 030 } 031 032 /** 033 * Gets the disbVchrDepositAccount attribute. 034 * 035 * @return Returns the disbVchrDepositAccount 036 */ 037 public boolean isDisbVchrDepositAccount() { 038 return disbVchrDepositAccount; 039 } 040 041 /** 042 * Sets the disbVchrDepositAccount attribute. 043 * 044 * @param disbVchrDepositAccount The disbVchrDepositAccount to set. 045 */ 046 public void setDisbVchrDepositAccount(boolean disbVchrDepositAccount) { 047 this.disbVchrDepositAccount = disbVchrDepositAccount; 048 } 049 050 051 public String getVendorAliasName() { 052 return vendorAliasName; 053 } 054 055 public void setVendorAliasName(String vendorAliasName) { 056 this.vendorAliasName = vendorAliasName; 057 } 058 059 060}