View Javadoc
1   /*
2    * Copyright 2013 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 org.kuali.ole.select.businessobject;
17  
18  import org.kuali.ole.fp.businessobject.DisbursementVoucherPayeeDetail;
19  
20  public class OleDisbursementVoucherPayeeDetail extends DisbursementVoucherPayeeDetail {
21  
22      private Boolean disbVchrDepositAccount;
23      private String vendorAliasName;
24  
25      /**
26       * Default no-arg constructor.
27       */
28      public OleDisbursementVoucherPayeeDetail() {
29          super();
30      }
31  
32      /**
33       * Gets the disbVchrDepositAccount attribute.
34       *
35       * @return Returns the disbVchrDepositAccount
36       */
37      public boolean isDisbVchrDepositAccount() {
38          return disbVchrDepositAccount;
39      }
40  
41      /**
42       * Sets the disbVchrDepositAccount attribute.
43       *
44       * @param disbVchrDepositAccount The disbVchrDepositAccount to set.
45       */
46      public void setDisbVchrDepositAccount(boolean disbVchrDepositAccount) {
47          this.disbVchrDepositAccount = disbVchrDepositAccount;
48      }
49  
50  
51      public String getVendorAliasName() {
52          return vendorAliasName;
53      }
54  
55      public void setVendorAliasName(String vendorAliasName) {
56          this.vendorAliasName = vendorAliasName;
57      }
58  
59  
60  }