/****************************************************************************** * Product: iDempiere ERP & CRM Smart Business Solution * * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * * with this program, if not, write to the Free Software Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * * For the text or an alternative of this public license, you may reach us * * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * * or via info@compiere.org or http://www.compiere.org/license.html * *****************************************************************************/ package org.compiere.model; import java.math.BigDecimal; import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for AD_OrgInfo * @author iDempiere (generated) * @version Release 11 */ public interface I_AD_OrgInfo { /** TableName=AD_OrgInfo */ public static final String Table_Name = "AD_OrgInfo"; /** AD_Table_ID=228 */ public static final int Table_ID = 228; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); /** AccessLevel = 7 - System - Client - Org */ BigDecimal accessLevel = BigDecimal.valueOf(7); /** Load Meta Data */ /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; /** Get Tenant. * Tenant for this installation. */ public int getAD_Client_ID(); /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; /** Set Organization. * Organizational entity within tenant */ public void setAD_Org_ID (int AD_Org_ID); /** Get Organization. * Organizational entity within tenant */ public int getAD_Org_ID(); /** Column name AD_OrgInfo_UU */ public static final String COLUMNNAME_AD_OrgInfo_UU = "AD_OrgInfo_UU"; /** Set AD_OrgInfo_UU */ public void setAD_OrgInfo_UU (String AD_OrgInfo_UU); /** Get AD_OrgInfo_UU */ public String getAD_OrgInfo_UU(); /** Column name AD_OrgType_ID */ public static final String COLUMNNAME_AD_OrgType_ID = "AD_OrgType_ID"; /** Set Organization Type. * Organization Type */ public void setAD_OrgType_ID (int AD_OrgType_ID); /** Get Organization Type. * Organization Type */ public int getAD_OrgType_ID(); public org.compiere.model.I_AD_OrgType getAD_OrgType() throws RuntimeException; /** Column name C_Calendar_ID */ public static final String COLUMNNAME_C_Calendar_ID = "C_Calendar_ID"; /** Set Calendar. * Accounting Calendar Name */ public void setC_Calendar_ID (int C_Calendar_ID); /** Get Calendar. * Accounting Calendar Name */ public int getC_Calendar_ID(); public org.compiere.model.I_C_Calendar getC_Calendar() throws RuntimeException; /** Column name C_Location_ID */ public static final String COLUMNNAME_C_Location_ID = "C_Location_ID"; /** Set Address. * Location or Address */ public void setC_Location_ID (int C_Location_ID); /** Get Address. * Location or Address */ public int getC_Location_ID(); public I_C_Location getC_Location() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; /** Get Created. * Date this record was created */ public Timestamp getCreated(); /** Column name CreatedBy */ public static final String COLUMNNAME_CreatedBy = "CreatedBy"; /** Get Created By. * User who created this records */ public int getCreatedBy(); /** Column name DropShip_Warehouse_ID */ public static final String COLUMNNAME_DropShip_Warehouse_ID = "DropShip_Warehouse_ID"; /** Set Drop Ship Warehouse. * The (logical) warehouse to use for recording drop ship receipts and shipments. */ public void setDropShip_Warehouse_ID (int DropShip_Warehouse_ID); /** Get Drop Ship Warehouse. * The (logical) warehouse to use for recording drop ship receipts and shipments. */ public int getDropShip_Warehouse_ID(); public org.compiere.model.I_M_Warehouse getDropShip_Warehouse() throws RuntimeException; /** Column name DUNS */ public static final String COLUMNNAME_DUNS = "DUNS"; /** Set D-U-N-S. * Dun & Bradstreet Number */ public void setDUNS (String DUNS); /** Get D-U-N-S. * Dun & Bradstreet Number */ public String getDUNS(); /** Column name EMail */ public static final String COLUMNNAME_EMail = "EMail"; /** Set EMail Address. * Electronic Mail Address */ public void setEMail (String EMail); /** Get EMail Address. * Electronic Mail Address */ public String getEMail(); /** Column name Fax */ public static final String COLUMNNAME_Fax = "Fax"; /** Set Fax. * Facsimile number */ public void setFax (String Fax); /** Get Fax. * Facsimile number */ public String getFax(); /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; /** Set Active. * The record is active in the system */ public void setIsActive (boolean IsActive); /** Get Active. * The record is active in the system */ public boolean isActive(); /** Column name Logo_ID */ public static final String COLUMNNAME_Logo_ID = "Logo_ID"; /** Set Logo */ public void setLogo_ID (int Logo_ID); /** Get Logo */ public int getLogo_ID(); /** Column name M_Warehouse_ID */ public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID"; /** Set Warehouse. * Storage Warehouse and Service Point */ public void setM_Warehouse_ID (int M_Warehouse_ID); /** Get Warehouse. * Storage Warehouse and Service Point */ public int getM_Warehouse_ID(); public org.compiere.model.I_M_Warehouse getM_Warehouse() throws RuntimeException; /** Column name Parent_Org_ID */ public static final String COLUMNNAME_Parent_Org_ID = "Parent_Org_ID"; /** Set Parent Organization. * Parent (superior) Organization */ public void setParent_Org_ID (int Parent_Org_ID); /** Get Parent Organization. * Parent (superior) Organization */ public int getParent_Org_ID(); /** Column name Phone */ public static final String COLUMNNAME_Phone = "Phone"; /** Set Phone. * Identifies a telephone number */ public void setPhone (String Phone); /** Get Phone. * Identifies a telephone number */ public String getPhone(); /** Column name Phone2 */ public static final String COLUMNNAME_Phone2 = "Phone2"; /** Set 2nd Phone. * Identifies an alternate telephone number. */ public void setPhone2 (String Phone2); /** Get 2nd Phone. * Identifies an alternate telephone number. */ public String getPhone2(); /** Column name ReceiptFooterMsg */ public static final String COLUMNNAME_ReceiptFooterMsg = "ReceiptFooterMsg"; /** Set Receipt Footer Msg. * This message will be displayed at the bottom of a receipt when doing a sales or purchase */ public void setReceiptFooterMsg (String ReceiptFooterMsg); /** Get Receipt Footer Msg. * This message will be displayed at the bottom of a receipt when doing a sales or purchase */ public String getReceiptFooterMsg(); /** Column name Supervisor_ID */ public static final String COLUMNNAME_Supervisor_ID = "Supervisor_ID"; /** Set Supervisor. * Supervisor for this user/organization - used for escalation and approval */ public void setSupervisor_ID (int Supervisor_ID); /** Get Supervisor. * Supervisor for this user/organization - used for escalation and approval */ public int getSupervisor_ID(); public org.compiere.model.I_AD_User getSupervisor() throws RuntimeException; /** Column name TaxID */ public static final String COLUMNNAME_TaxID = "TaxID"; /** Set Tax ID. * Tax Identification */ public void setTaxID (String TaxID); /** Get Tax ID. * Tax Identification */ public String getTaxID(); /** Column name TimeZone */ public static final String COLUMNNAME_TimeZone = "TimeZone"; /** Set Time Zone. * Time zone name */ public void setTimeZone (String TimeZone); /** Get Time Zone. * Time zone name */ public String getTimeZone(); /** Column name TransferBank_ID */ public static final String COLUMNNAME_TransferBank_ID = "TransferBank_ID"; /** Set Bank for transfers. * Bank account depending on currency will be used from this bank for doing transfers */ public void setTransferBank_ID (int TransferBank_ID); /** Get Bank for transfers. * Bank account depending on currency will be used from this bank for doing transfers */ public int getTransferBank_ID(); public org.compiere.model.I_C_Bank getTransferBank() throws RuntimeException; /** Column name TransferCashBook_ID */ public static final String COLUMNNAME_TransferCashBook_ID = "TransferCashBook_ID"; /** Set CashBook for transfers */ public void setTransferCashBook_ID (int TransferCashBook_ID); /** Get CashBook for transfers */ public int getTransferCashBook_ID(); public org.compiere.model.I_C_CashBook getTransferCashBook() throws RuntimeException; /** Column name Updated */ public static final String COLUMNNAME_Updated = "Updated"; /** Get Updated. * Date this record was updated */ public Timestamp getUpdated(); /** Column name UpdatedBy */ public static final String COLUMNNAME_UpdatedBy = "UpdatedBy"; /** Get Updated By. * User who updated this records */ public int getUpdatedBy(); }