ERP/3.0/Developers Guide/Reference/Entity Model/FIN PaymentMethod
This article is protected against manual editing because it is automatically generated from Openbravo meta-data. Learn more about writing and translating such documents.
FIN_PaymentMethod
To the database table (FIN_PaymentMethod) of this entity.
Properties
Note:
- Properties marked with a * are part of the Id of the Entity.
- Properties marked with a # are part of the Identifier of the Entity.
Property | Column | Constraints | Type | Description |
id* | Fin_Paymentmethod_ID | Mandatory Max Length: 32 | java.lang.String | |
client | AD_Client_ID | Mandatory | ADClient | A Client is a company or a legal entity. You cannot share data between Clients. |
organization | AD_Org_ID | Mandatory | Organization | An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations. |
creationDate | Created | Mandatory | java.util.Date | The Created field indicates the date that this record was created. |
createdBy | Createdby | Mandatory | ADUser | The Created By field indicates the user who created this record. |
updated | Updated | Mandatory | java.util.Date | The Updated field indicates the date that this record was updated. |
updatedBy | Updatedby | Mandatory | ADUser | The Updated By field indicates the user who updated this record. |
active | Isactive | java.lang.Boolean | There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reporting. There are two reasons for de-activating and not deleting records:
(1) The system requires the record for auditing purposes. (2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are existing invoices for it. By de-activating the Business Partner you prevent it from being used in future transactions. | |
name# | Name | Mandatory Max Length: 60 | java.lang.String | A more descriptive identifier (that does need to be unique) of a record/document that is used as a default search option along with the search key (that is unique and mostly shorter). It is up to 60 characters in length. |
description | Description | Max Length: 255 | java.lang.String | A description is limited to 255 characters. |
automaticReceipt | Automatic_Receipt | Mandatory | java.lang.Boolean | Automatically create the receipt when the invoice is completed. |
automaticPayment | Automatic_Payment | Mandatory | java.lang.Boolean | Automatically create the payment when the invoice is completed. |
automaticDeposit | Automatic_Deposit | Mandatory | java.lang.Boolean | Automatically deposit the payment when it is processed. |
automaticWithdrawn | Automatic_Withdrawn | Mandatory | java.lang.Boolean | Automatically withdrawn the payment when it is processed. |
payinAllow | Payin_Allow | Mandatory | java.lang.Boolean | Sets that Payment Ins are allowed. |
payoutAllow | Payout_Allow | Mandatory | java.lang.Boolean | Sets that Payment Ins are allowed. |
payinExecutionType | Payin_Execution_Type | Mandatory Max Length: 60 | java.lang.String | Type of Payment Execution for Payment In flow. |
payoutExecutionType | Payout_Execution_Type | Mandatory Max Length: 60 | java.lang.String | Type of Payment Execution for Payment Out flow. |
payinExecutionProcess | Payin_Execution_Process_ID | FinancialMgmtPaymentExecutionProcess | Execution process to be used in the Payment In flow | |
payoutExecutionProcess | Payout_Execution_Process_ID | FinancialMgmtPaymentExecutionProcess | Execution process to be used in the Payment Out flow | |
payinDeferred | Payin_Deferred | Mandatory | java.lang.Boolean | Sets that the Execution Process is deferred in the Payment In flow. |
payoutDeferred | Payout_Deferred | Mandatory | java.lang.Boolean | Sets that the Executiion Process is deferred in the Payment In flow. |
uponReceiptUse | Uponreceiptuse | Max Length: 60 | java.lang.String | Account used upon receipt |
uponDepositUse | Upondeposituse | Max Length: 60 | java.lang.String | Account used upon deposit |
iNUponClearingUse | Inuponclearinguse | Max Length: 60 | java.lang.String | Account used upon clearing |
uponPaymentUse | Uponpaymentuse | Max Length: 60 | java.lang.String | Account used upon payment |
uponWithdrawalUse | Uponwithdrawaluse | Max Length: 60 | java.lang.String | Account used upon withdrawal |
oUTUponClearingUse | Outuponclearinguse | Max Length: 60 | java.lang.String | Account to be used upon clearing |
payinIsMulticurrency | Payin_IsMulticurrency | Mandatory | java.lang.Boolean | Allow Receipt of Payments in Multiple Currencies |
payoutIsMulticurrency | Payout_IsMulticurrency | Mandatory | java.lang.Boolean | Allow withdrawl of Payments in Multiple Currencies |
financialMgmtFinAccPaymentMethodList | FinancialMgmtFinAccPaymentMethod |
|
Java Entity Class
/* ************************************************************************* * The contents of this file are subject to the Openbravo Public License * Version 1.1 (the "License"), being the Mozilla Public License * Version 1.1 with a permitted attribution clause; you may not use this * file except in compliance with the License. You may obtain a copy of * the License at http://www.openbravo.com/legal/license.html * Software distributed under the License is distributed on an "AS IS" * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the * License for the specific language governing rights and limitations * under the License. * The Original Code is Openbravo ERP. * The Initial Developer of the Original Code is Openbravo SLU * All portions are Copyright (C) 2008-2020 Openbravo SLU * All Rights Reserved. * Contributor(s): ______________________________________. ************************************************************************ */ package org.openbravo.model.financialmgmt.payment; import java.util.ArrayList; import java.util.Date; import java.util.List; import org.openbravo.base.structure.ActiveEnabled; import org.openbravo.base.structure.BaseOBObject; import org.openbravo.base.structure.ClientEnabled; import org.openbravo.base.structure.OrganizationEnabled; import org.openbravo.base.structure.Traceable; import org.openbravo.model.ad.access.User; import org.openbravo.model.ad.system.Client; import org.openbravo.model.common.enterprise.Organization; /** * Entity class for entity FIN_PaymentMethod (stored in table FIN_PaymentMethod). * <br> * NOTE: This class should not be instantiated directly. To instantiate this * class the {@link org.openbravo.base.provider.OBProvider} should be used. */ public class FIN_PaymentMethod extends BaseOBObject implements Traceable, ClientEnabled, OrganizationEnabled, ActiveEnabled { private static final long serialVersionUID = 1L; public static final String TABLE_NAME = "FIN_PaymentMethod"; public static final String ENTITY_NAME = "FIN_PaymentMethod"; /** * Property id stored in column Fin_Paymentmethod_ID in table FIN_PaymentMethod * */ public static final String PROPERTY_ID = "id"; /** * Property client stored in column AD_Client_ID in table FIN_PaymentMethod * @see ClientEnabled * */ public static final String PROPERTY_CLIENT = "client"; /** * Property organization stored in column AD_Org_ID in table FIN_PaymentMethod * @see OrganizationEnabled * */ public static final String PROPERTY_ORGANIZATION = "organization"; /** * Property creationDate stored in column Created in table FIN_PaymentMethod * @see Traceable * */ public static final String PROPERTY_CREATIONDATE = "creationDate"; /** * Property createdBy stored in column Createdby in table FIN_PaymentMethod * @see Traceable * */ public static final String PROPERTY_CREATEDBY = "createdBy"; /** * Property updated stored in column Updated in table FIN_PaymentMethod * @see Traceable * */ public static final String PROPERTY_UPDATED = "updated"; /** * Property updatedBy stored in column Updatedby in table FIN_PaymentMethod * @see Traceable * */ public static final String PROPERTY_UPDATEDBY = "updatedBy"; /** * Property active stored in column Isactive in table FIN_PaymentMethod * @see ActiveEnabled * */ public static final String PROPERTY_ACTIVE = "active"; /** * Property name stored in column Name in table FIN_PaymentMethod * */ public static final String PROPERTY_NAME = "name"; /** * Property description stored in column Description in table FIN_PaymentMethod<br> * Help: {@literal A description is limited to 255 characters.} * */ public static final String PROPERTY_DESCRIPTION = "description"; /** * Property automaticReceipt stored in column Automatic_Receipt in table FIN_PaymentMethod<br> * Help: {@literal Automatically create the receipt when the invoice is completed.} * */ public static final String PROPERTY_AUTOMATICRECEIPT = "automaticReceipt"; /** * Property automaticPayment stored in column Automatic_Payment in table FIN_PaymentMethod<br> * Help: {@literal Automatically create the payment when the invoice is completed.} * */ public static final String PROPERTY_AUTOMATICPAYMENT = "automaticPayment"; /** * Property automaticDeposit stored in column Automatic_Deposit in table FIN_PaymentMethod<br> * Help: {@literal Automatically deposit the payment when it is processed.} * */ public static final String PROPERTY_AUTOMATICDEPOSIT = "automaticDeposit"; /** * Property automaticWithdrawn stored in column Automatic_Withdrawn in table FIN_PaymentMethod<br> * Help: {@literal Automatically withdrawn the payment when it is processed.} * */ public static final String PROPERTY_AUTOMATICWITHDRAWN = "automaticWithdrawn"; /** * Property payinAllow stored in column Payin_Allow in table FIN_PaymentMethod<br> * Help: {@literal Sets that Payment Ins are allowed.} * */ public static final String PROPERTY_PAYINALLOW = "payinAllow"; /** * Property payoutAllow stored in column Payout_Allow in table FIN_PaymentMethod<br> * Help: {@literal Sets that Payment Ins are allowed.} * */ public static final String PROPERTY_PAYOUTALLOW = "payoutAllow"; /** * Property payinExecutionType stored in column Payin_Execution_Type in table FIN_PaymentMethod<br> * Help: {@literal Type of Payment Execution for Payment In flow.} * */ public static final String PROPERTY_PAYINEXECUTIONTYPE = "payinExecutionType"; /** * Property payoutExecutionType stored in column Payout_Execution_Type in table FIN_PaymentMethod<br> * Help: {@literal Type of Payment Execution for Payment Out flow.} * */ public static final String PROPERTY_PAYOUTEXECUTIONTYPE = "payoutExecutionType"; /** * Property payinExecutionProcess stored in column Payin_Execution_Process_ID in table FIN_PaymentMethod<br> * Help: {@literal Execution process to be used in the Payment In flow} * */ public static final String PROPERTY_PAYINEXECUTIONPROCESS = "payinExecutionProcess"; /** * Property payoutExecutionProcess stored in column Payout_Execution_Process_ID in table FIN_PaymentMethod<br> * Help: {@literal Execution process to be used in the Payment Out flow} * */ public static final String PROPERTY_PAYOUTEXECUTIONPROCESS = "payoutExecutionProcess"; /** * Property payinDeferred stored in column Payin_Deferred in table FIN_PaymentMethod<br> * Help: {@literal Sets that the Execution Process is deferred in the Payment In flow.} * */ public static final String PROPERTY_PAYINDEFERRED = "payinDeferred"; /** * Property payoutDeferred stored in column Payout_Deferred in table FIN_PaymentMethod<br> * Help: {@literal Sets that the Executiion Process is deferred in the Payment In flow.} * */ public static final String PROPERTY_PAYOUTDEFERRED = "payoutDeferred"; /** * Property uponReceiptUse stored in column Uponreceiptuse in table FIN_PaymentMethod<br> * Help: {@literal Account used upon receipt} * */ public static final String PROPERTY_UPONRECEIPTUSE = "uponReceiptUse"; /** * Property uponDepositUse stored in column Upondeposituse in table FIN_PaymentMethod<br> * Help: {@literal Account used upon deposit} * */ public static final String PROPERTY_UPONDEPOSITUSE = "uponDepositUse"; /** * Property iNUponClearingUse stored in column Inuponclearinguse in table FIN_PaymentMethod<br> * Help: {@literal Account used upon clearing} * */ public static final String PROPERTY_INUPONCLEARINGUSE = "iNUponClearingUse"; /** * Property uponPaymentUse stored in column Uponpaymentuse in table FIN_PaymentMethod<br> * Help: {@literal Account used upon payment} * */ public static final String PROPERTY_UPONPAYMENTUSE = "uponPaymentUse"; /** * Property uponWithdrawalUse stored in column Uponwithdrawaluse in table FIN_PaymentMethod<br> * Help: {@literal Account used upon withdrawal} * */ public static final String PROPERTY_UPONWITHDRAWALUSE = "uponWithdrawalUse"; /** * Property oUTUponClearingUse stored in column Outuponclearinguse in table FIN_PaymentMethod<br> * Help: {@literal Account to be used upon clearing} * */ public static final String PROPERTY_OUTUPONCLEARINGUSE = "oUTUponClearingUse"; /** * Property payinIsMulticurrency stored in column Payin_IsMulticurrency in table FIN_PaymentMethod<br> * Help: {@literal Allow Receipt of Payments in Multiple Currencies} * */ public static final String PROPERTY_PAYINISMULTICURRENCY = "payinIsMulticurrency"; /** * Property payoutIsMulticurrency stored in column Payout_IsMulticurrency in table FIN_PaymentMethod<br> * Help: {@literal Allow withdrawl of Payments in Multiple Currencies} * */ public static final String PROPERTY_PAYOUTISMULTICURRENCY = "payoutIsMulticurrency"; /** * Property financialMgmtFinAccPaymentMethodList stored in table FIN_PaymentMethod * */ public static final String PROPERTY_FINANCIALMGMTFINACCPAYMENTMETHODLIST = "financialMgmtFinAccPaymentMethodList"; public FIN_PaymentMethod() { setDefaultValue(PROPERTY_CREATIONDATE, new Date()); setDefaultValue(PROPERTY_UPDATED, new Date()); setDefaultValue(PROPERTY_ACTIVE, true); setDefaultValue(PROPERTY_AUTOMATICRECEIPT, false); setDefaultValue(PROPERTY_AUTOMATICPAYMENT, false); setDefaultValue(PROPERTY_AUTOMATICDEPOSIT, false); setDefaultValue(PROPERTY_AUTOMATICWITHDRAWN, false); setDefaultValue(PROPERTY_PAYINALLOW, true); setDefaultValue(PROPERTY_PAYOUTALLOW, true); setDefaultValue(PROPERTY_PAYINEXECUTIONTYPE, "M"); setDefaultValue(PROPERTY_PAYOUTEXECUTIONTYPE, "M"); setDefaultValue(PROPERTY_PAYINDEFERRED, false); setDefaultValue(PROPERTY_PAYOUTDEFERRED, false); setDefaultValue(PROPERTY_PAYINISMULTICURRENCY, false); setDefaultValue(PROPERTY_PAYOUTISMULTICURRENCY, false); setDefaultValue(PROPERTY_FINANCIALMGMTFINACCPAYMENTMETHODLIST, new ArrayList<Object>()); } @Override public String getEntityName() { return ENTITY_NAME; } /** * @see FIN_PaymentMethod#PROPERTY_ID * */ public String getId() { return (String) get(PROPERTY_ID); } /** * @see FIN_PaymentMethod#PROPERTY_ID * */ public void setId(String id) { set(PROPERTY_ID, id); } /** * @see FIN_PaymentMethod#PROPERTY_CLIENT * */ public Client getClient() { return (Client) get(PROPERTY_CLIENT); } /** * @see FIN_PaymentMethod#PROPERTY_CLIENT * */ public void setClient(Client client) { set(PROPERTY_CLIENT, client); } /** * @see FIN_PaymentMethod#PROPERTY_ORGANIZATION * */ public Organization getOrganization() { return (Organization) get(PROPERTY_ORGANIZATION); } /** * @see FIN_PaymentMethod#PROPERTY_ORGANIZATION * */ public void setOrganization(Organization organization) { set(PROPERTY_ORGANIZATION, organization); } /** * @see FIN_PaymentMethod#PROPERTY_CREATIONDATE * */ public Date getCreationDate() { return (Date) get(PROPERTY_CREATIONDATE); } /** * @see FIN_PaymentMethod#PROPERTY_CREATIONDATE * */ public void setCreationDate(Date creationDate) { set(PROPERTY_CREATIONDATE, creationDate); } /** * @see FIN_PaymentMethod#PROPERTY_CREATEDBY * */ public User getCreatedBy() { return (User) get(PROPERTY_CREATEDBY); } /** * @see FIN_PaymentMethod#PROPERTY_CREATEDBY * */ public void setCreatedBy(User createdBy) { set(PROPERTY_CREATEDBY, createdBy); } /** * @see FIN_PaymentMethod#PROPERTY_UPDATED * */ public Date getUpdated() { return (Date) get(PROPERTY_UPDATED); } /** * @see FIN_PaymentMethod#PROPERTY_UPDATED * */ public void setUpdated(Date updated) { set(PROPERTY_UPDATED, updated); } /** * @see FIN_PaymentMethod#PROPERTY_UPDATEDBY * */ public User getUpdatedBy() { return (User) get(PROPERTY_UPDATEDBY); } /** * @see FIN_PaymentMethod#PROPERTY_UPDATEDBY * */ public void setUpdatedBy(User updatedBy) { set(PROPERTY_UPDATEDBY, updatedBy); } /** * @see FIN_PaymentMethod#PROPERTY_ACTIVE * */ public Boolean isActive() { return (Boolean) get(PROPERTY_ACTIVE); } /** * @see FIN_PaymentMethod#PROPERTY_ACTIVE * */ public void setActive(Boolean active) { set(PROPERTY_ACTIVE, active); } /** * @see FIN_PaymentMethod#PROPERTY_NAME * */ public String getName() { return (String) get(PROPERTY_NAME); } /** * @see FIN_PaymentMethod#PROPERTY_NAME * */ public void setName(String name) { set(PROPERTY_NAME, name); } /** * @see FIN_PaymentMethod#PROPERTY_DESCRIPTION * */ public String getDescription() { return (String) get(PROPERTY_DESCRIPTION); } /** * @see FIN_PaymentMethod#PROPERTY_DESCRIPTION * */ public void setDescription(String description) { set(PROPERTY_DESCRIPTION, description); } /** * @see FIN_PaymentMethod#PROPERTY_AUTOMATICRECEIPT * */ public Boolean isAutomaticReceipt() { return (Boolean) get(PROPERTY_AUTOMATICRECEIPT); } /** * @see FIN_PaymentMethod#PROPERTY_AUTOMATICRECEIPT * */ public void setAutomaticReceipt(Boolean automaticReceipt) { set(PROPERTY_AUTOMATICRECEIPT, automaticReceipt); } /** * @see FIN_PaymentMethod#PROPERTY_AUTOMATICPAYMENT * */ public Boolean isAutomaticPayment() { return (Boolean) get(PROPERTY_AUTOMATICPAYMENT); } /** * @see FIN_PaymentMethod#PROPERTY_AUTOMATICPAYMENT * */ public void setAutomaticPayment(Boolean automaticPayment) { set(PROPERTY_AUTOMATICPAYMENT, automaticPayment); } /** * @see FIN_PaymentMethod#PROPERTY_AUTOMATICDEPOSIT * */ public Boolean isAutomaticDeposit() { return (Boolean) get(PROPERTY_AUTOMATICDEPOSIT); } /** * @see FIN_PaymentMethod#PROPERTY_AUTOMATICDEPOSIT * */ public void setAutomaticDeposit(Boolean automaticDeposit) { set(PROPERTY_AUTOMATICDEPOSIT, automaticDeposit); } /** * @see FIN_PaymentMethod#PROPERTY_AUTOMATICWITHDRAWN * */ public Boolean isAutomaticWithdrawn() { return (Boolean) get(PROPERTY_AUTOMATICWITHDRAWN); } /** * @see FIN_PaymentMethod#PROPERTY_AUTOMATICWITHDRAWN * */ public void setAutomaticWithdrawn(Boolean automaticWithdrawn) { set(PROPERTY_AUTOMATICWITHDRAWN, automaticWithdrawn); } /** * @see FIN_PaymentMethod#PROPERTY_PAYINALLOW * */ public Boolean isPayinAllow() { return (Boolean) get(PROPERTY_PAYINALLOW); } /** * @see FIN_PaymentMethod#PROPERTY_PAYINALLOW * */ public void setPayinAllow(Boolean payinAllow) { set(PROPERTY_PAYINALLOW, payinAllow); } /** * @see FIN_PaymentMethod#PROPERTY_PAYOUTALLOW * */ public Boolean isPayoutAllow() { return (Boolean) get(PROPERTY_PAYOUTALLOW); } /** * @see FIN_PaymentMethod#PROPERTY_PAYOUTALLOW * */ public void setPayoutAllow(Boolean payoutAllow) { set(PROPERTY_PAYOUTALLOW, payoutAllow); } /** * @see FIN_PaymentMethod#PROPERTY_PAYINEXECUTIONTYPE * */ public String getPayinExecutionType() { return (String) get(PROPERTY_PAYINEXECUTIONTYPE); } /** * @see FIN_PaymentMethod#PROPERTY_PAYINEXECUTIONTYPE * */ public void setPayinExecutionType(String payinExecutionType) { set(PROPERTY_PAYINEXECUTIONTYPE, payinExecutionType); } /** * @see FIN_PaymentMethod#PROPERTY_PAYOUTEXECUTIONTYPE * */ public String getPayoutExecutionType() { return (String) get(PROPERTY_PAYOUTEXECUTIONTYPE); } /** * @see FIN_PaymentMethod#PROPERTY_PAYOUTEXECUTIONTYPE * */ public void setPayoutExecutionType(String payoutExecutionType) { set(PROPERTY_PAYOUTEXECUTIONTYPE, payoutExecutionType); } /** * @see FIN_PaymentMethod#PROPERTY_PAYINEXECUTIONPROCESS * */ public PaymentExecutionProcess getPayinExecutionProcess() { return (PaymentExecutionProcess) get(PROPERTY_PAYINEXECUTIONPROCESS); } /** * @see FIN_PaymentMethod#PROPERTY_PAYINEXECUTIONPROCESS * */ public void setPayinExecutionProcess(PaymentExecutionProcess payinExecutionProcess) { set(PROPERTY_PAYINEXECUTIONPROCESS, payinExecutionProcess); } /** * @see FIN_PaymentMethod#PROPERTY_PAYOUTEXECUTIONPROCESS * */ public PaymentExecutionProcess getPayoutExecutionProcess() { return (PaymentExecutionProcess) get(PROPERTY_PAYOUTEXECUTIONPROCESS); } /** * @see FIN_PaymentMethod#PROPERTY_PAYOUTEXECUTIONPROCESS * */ public void setPayoutExecutionProcess(PaymentExecutionProcess payoutExecutionProcess) { set(PROPERTY_PAYOUTEXECUTIONPROCESS, payoutExecutionProcess); } /** * @see FIN_PaymentMethod#PROPERTY_PAYINDEFERRED * */ public Boolean isPayinDeferred() { return (Boolean) get(PROPERTY_PAYINDEFERRED); } /** * @see FIN_PaymentMethod#PROPERTY_PAYINDEFERRED * */ public void setPayinDeferred(Boolean payinDeferred) { set(PROPERTY_PAYINDEFERRED, payinDeferred); } /** * @see FIN_PaymentMethod#PROPERTY_PAYOUTDEFERRED * */ public Boolean isPayoutDeferred() { return (Boolean) get(PROPERTY_PAYOUTDEFERRED); } /** * @see FIN_PaymentMethod#PROPERTY_PAYOUTDEFERRED * */ public void setPayoutDeferred(Boolean payoutDeferred) { set(PROPERTY_PAYOUTDEFERRED, payoutDeferred); } /** * @see FIN_PaymentMethod#PROPERTY_UPONRECEIPTUSE * */ public String getUponReceiptUse() { return (String) get(PROPERTY_UPONRECEIPTUSE); } /** * @see FIN_PaymentMethod#PROPERTY_UPONRECEIPTUSE * */ public void setUponReceiptUse(String uponReceiptUse) { set(PROPERTY_UPONRECEIPTUSE, uponReceiptUse); } /** * @see FIN_PaymentMethod#PROPERTY_UPONDEPOSITUSE * */ public String getUponDepositUse() { return (String) get(PROPERTY_UPONDEPOSITUSE); } /** * @see FIN_PaymentMethod#PROPERTY_UPONDEPOSITUSE * */ public void setUponDepositUse(String uponDepositUse) { set(PROPERTY_UPONDEPOSITUSE, uponDepositUse); } /** * @see FIN_PaymentMethod#PROPERTY_INUPONCLEARINGUSE * */ public String getINUponClearingUse() { return (String) get(PROPERTY_INUPONCLEARINGUSE); } /** * @see FIN_PaymentMethod#PROPERTY_INUPONCLEARINGUSE * */ public void setINUponClearingUse(String iNUponClearingUse) { set(PROPERTY_INUPONCLEARINGUSE, iNUponClearingUse); } /** * @see FIN_PaymentMethod#PROPERTY_UPONPAYMENTUSE * */ public String getUponPaymentUse() { return (String) get(PROPERTY_UPONPAYMENTUSE); } /** * @see FIN_PaymentMethod#PROPERTY_UPONPAYMENTUSE * */ public void setUponPaymentUse(String uponPaymentUse) { set(PROPERTY_UPONPAYMENTUSE, uponPaymentUse); } /** * @see FIN_PaymentMethod#PROPERTY_UPONWITHDRAWALUSE * */ public String getUponWithdrawalUse() { return (String) get(PROPERTY_UPONWITHDRAWALUSE); } /** * @see FIN_PaymentMethod#PROPERTY_UPONWITHDRAWALUSE * */ public void setUponWithdrawalUse(String uponWithdrawalUse) { set(PROPERTY_UPONWITHDRAWALUSE, uponWithdrawalUse); } /** * @see FIN_PaymentMethod#PROPERTY_OUTUPONCLEARINGUSE * */ public String getOUTUponClearingUse() { return (String) get(PROPERTY_OUTUPONCLEARINGUSE); } /** * @see FIN_PaymentMethod#PROPERTY_OUTUPONCLEARINGUSE * */ public void setOUTUponClearingUse(String oUTUponClearingUse) { set(PROPERTY_OUTUPONCLEARINGUSE, oUTUponClearingUse); } /** * @see FIN_PaymentMethod#PROPERTY_PAYINISMULTICURRENCY * */ public Boolean isPayinIsMulticurrency() { return (Boolean) get(PROPERTY_PAYINISMULTICURRENCY); } /** * @see FIN_PaymentMethod#PROPERTY_PAYINISMULTICURRENCY * */ public void setPayinIsMulticurrency(Boolean payinIsMulticurrency) { set(PROPERTY_PAYINISMULTICURRENCY, payinIsMulticurrency); } /** * @see FIN_PaymentMethod#PROPERTY_PAYOUTISMULTICURRENCY * */ public Boolean isPayoutIsMulticurrency() { return (Boolean) get(PROPERTY_PAYOUTISMULTICURRENCY); } /** * @see FIN_PaymentMethod#PROPERTY_PAYOUTISMULTICURRENCY * */ public void setPayoutIsMulticurrency(Boolean payoutIsMulticurrency) { set(PROPERTY_PAYOUTISMULTICURRENCY, payoutIsMulticurrency); } /** * @see FinAccPaymentMethod * */ @SuppressWarnings("unchecked") public List<FinAccPaymentMethod> getFinancialMgmtFinAccPaymentMethodList() { return (List<FinAccPaymentMethod>) get(PROPERTY_FINANCIALMGMTFINACCPAYMENTMETHODLIST); } /** * @see FinAccPaymentMethod * */ public void setFinancialMgmtFinAccPaymentMethodList(List<FinAccPaymentMethod> financialMgmtFinAccPaymentMethodList) { set(PROPERTY_FINANCIALMGMTFINACCPAYMENTMETHODLIST, financialMgmtFinAccPaymentMethodList); } }