Initial commit of Posterita
This commit is contained in:
parent
9826e3c4df
commit
ad6570afef
|
@ -5,21 +5,21 @@
|
|||
* Copyright (C) Trifon Trifonov. *
|
||||
* Copyright (C) Contributors *
|
||||
* *
|
||||
* This program is free software;
|
||||
* This program is free software;
|
||||
you can redistribute it and/or *
|
||||
* modify it under the terms of the GNU General Public License *
|
||||
* as published by the Free Software Foundation;
|
||||
* as published by the Free Software Foundation;
|
||||
either version 2 *
|
||||
* of the License, or (at your option) any later version. *
|
||||
* *
|
||||
* This program is distributed in the hope that it will be useful, *
|
||||
* but WITHOUT ANY WARRANTY;
|
||||
* 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;
|
||||
* along with this program;
|
||||
if not, write to the Free Software *
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
|
||||
* MA 02110-1301, USA. *
|
||||
|
@ -30,273 +30,289 @@
|
|||
* Sponsors: *
|
||||
* - Company (http://www.site.com) *
|
||||
**********************************************************************/
|
||||
package org.compiere.model;
|
||||
|
||||
import java.util.*;
|
||||
import java.sql.Timestamp;
|
||||
import java.math.*;
|
||||
import org.compiere.util.*;
|
||||
package org.compiere.model;
|
||||
|
||||
/** Generated Interface for AD_PrintFormat
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.3.0 - 2007-08-24 11:39:25.484
|
||||
*/
|
||||
public interface I_AD_PrintFormat
|
||||
{
|
||||
import java.math.BigDecimal;
|
||||
import org.compiere.util.KeyNamePair;
|
||||
|
||||
/** Generated Interface for AD_PrintFormat
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.3.0
|
||||
*/
|
||||
public interface I_AD_PrintFormat
|
||||
{
|
||||
|
||||
/** TableName=AD_PrintFormat */
|
||||
public static final String Table_Name = "AD_PrintFormat";
|
||||
public static final String Table_Name = "AD_PrintFormat";
|
||||
|
||||
/** AD_Table_ID=493 */
|
||||
public static final int Table_ID = MTable.getTable_ID(Table_Name);
|
||||
public static final int Table_ID = MTable.getTable_ID(Table_Name);
|
||||
|
||||
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
|
||||
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
|
||||
|
||||
/** AccessLevel = 7 - System - Client - Org
|
||||
*/
|
||||
BigDecimal accessLevel = new BigDecimal(7);
|
||||
BigDecimal accessLevel = BigDecimal.valueOf(7);
|
||||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name AD_PrintColor_ID */
|
||||
public static final String COLUMNNAME_AD_PrintColor_ID = "AD_PrintColor_ID";
|
||||
public static final String COLUMNNAME_AD_PrintColor_ID = "AD_PrintColor_ID";
|
||||
|
||||
/** Set Print Color.
|
||||
* Color used for printing and display
|
||||
* Color used for printing and display
|
||||
*/
|
||||
public void setAD_PrintColor_ID (int AD_PrintColor_ID);
|
||||
public void setAD_PrintColor_ID (int AD_PrintColor_ID);
|
||||
|
||||
/** Get Print Color.
|
||||
* Color used for printing and display
|
||||
* Color used for printing and display
|
||||
*/
|
||||
public int getAD_PrintColor_ID();
|
||||
public int getAD_PrintColor_ID();
|
||||
|
||||
public I_AD_PrintColor getI_AD_PrintColor() throws Exception;
|
||||
public I_AD_PrintColor getAD_PrintColor() throws Exception;
|
||||
|
||||
/** Column name AD_PrintFont_ID */
|
||||
public static final String COLUMNNAME_AD_PrintFont_ID = "AD_PrintFont_ID";
|
||||
public static final String COLUMNNAME_AD_PrintFont_ID = "AD_PrintFont_ID";
|
||||
|
||||
/** Set Print Font.
|
||||
* Maintain Print Font
|
||||
* Maintain Print Font
|
||||
*/
|
||||
public void setAD_PrintFont_ID (int AD_PrintFont_ID);
|
||||
public void setAD_PrintFont_ID (int AD_PrintFont_ID);
|
||||
|
||||
/** Get Print Font.
|
||||
* Maintain Print Font
|
||||
* Maintain Print Font
|
||||
*/
|
||||
public int getAD_PrintFont_ID();
|
||||
public int getAD_PrintFont_ID();
|
||||
|
||||
public I_AD_PrintFont getI_AD_PrintFont() throws Exception;
|
||||
public I_AD_PrintFont getAD_PrintFont() throws Exception;
|
||||
|
||||
/** Column name AD_PrintFormat_ID */
|
||||
public static final String COLUMNNAME_AD_PrintFormat_ID = "AD_PrintFormat_ID";
|
||||
public static final String COLUMNNAME_AD_PrintFormat_ID = "AD_PrintFormat_ID";
|
||||
|
||||
/** Set Print Format.
|
||||
* Data Print Format
|
||||
* Data Print Format
|
||||
*/
|
||||
public void setAD_PrintFormat_ID (int AD_PrintFormat_ID);
|
||||
public void setAD_PrintFormat_ID (int AD_PrintFormat_ID);
|
||||
|
||||
/** Get Print Format.
|
||||
* Data Print Format
|
||||
* Data Print Format
|
||||
*/
|
||||
public int getAD_PrintFormat_ID();
|
||||
public int getAD_PrintFormat_ID();
|
||||
|
||||
/** Column name AD_PrintPaper_ID */
|
||||
public static final String COLUMNNAME_AD_PrintPaper_ID = "AD_PrintPaper_ID";
|
||||
public static final String COLUMNNAME_AD_PrintPaper_ID = "AD_PrintPaper_ID";
|
||||
|
||||
/** Set Print Paper.
|
||||
* Printer paper definition
|
||||
* Printer paper definition
|
||||
*/
|
||||
public void setAD_PrintPaper_ID (int AD_PrintPaper_ID);
|
||||
public void setAD_PrintPaper_ID (int AD_PrintPaper_ID);
|
||||
|
||||
/** Get Print Paper.
|
||||
* Printer paper definition
|
||||
* Printer paper definition
|
||||
*/
|
||||
public int getAD_PrintPaper_ID();
|
||||
public int getAD_PrintPaper_ID();
|
||||
|
||||
public I_AD_PrintPaper getI_AD_PrintPaper() throws Exception;
|
||||
public I_AD_PrintPaper getAD_PrintPaper() throws Exception;
|
||||
|
||||
/** Column name AD_PrintTableFormat_ID */
|
||||
public static final String COLUMNNAME_AD_PrintTableFormat_ID = "AD_PrintTableFormat_ID";
|
||||
public static final String COLUMNNAME_AD_PrintTableFormat_ID = "AD_PrintTableFormat_ID";
|
||||
|
||||
/** Set Print Table Format.
|
||||
* Table Format in Reports
|
||||
* Table Format in Reports
|
||||
*/
|
||||
public void setAD_PrintTableFormat_ID (int AD_PrintTableFormat_ID);
|
||||
public void setAD_PrintTableFormat_ID (int AD_PrintTableFormat_ID);
|
||||
|
||||
/** Get Print Table Format.
|
||||
* Table Format in Reports
|
||||
* Table Format in Reports
|
||||
*/
|
||||
public int getAD_PrintTableFormat_ID();
|
||||
public int getAD_PrintTableFormat_ID();
|
||||
|
||||
public I_AD_PrintTableFormat getI_AD_PrintTableFormat() throws Exception;
|
||||
public I_AD_PrintTableFormat getAD_PrintTableFormat() throws Exception;
|
||||
|
||||
/** Column name AD_ReportView_ID */
|
||||
public static final String COLUMNNAME_AD_ReportView_ID = "AD_ReportView_ID";
|
||||
public static final String COLUMNNAME_AD_ReportView_ID = "AD_ReportView_ID";
|
||||
|
||||
/** Set Report View.
|
||||
* View used to generate this report
|
||||
* View used to generate this report
|
||||
*/
|
||||
public void setAD_ReportView_ID (int AD_ReportView_ID);
|
||||
public void setAD_ReportView_ID (int AD_ReportView_ID);
|
||||
|
||||
/** Get Report View.
|
||||
* View used to generate this report
|
||||
* View used to generate this report
|
||||
*/
|
||||
public int getAD_ReportView_ID();
|
||||
public int getAD_ReportView_ID();
|
||||
|
||||
public I_AD_ReportView getI_AD_ReportView() throws Exception;
|
||||
public I_AD_ReportView getAD_ReportView() throws Exception;
|
||||
|
||||
/** Column name AD_Table_ID */
|
||||
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
|
||||
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
|
||||
|
||||
/** Set Table.
|
||||
* Database Table information
|
||||
* Database Table information
|
||||
*/
|
||||
public void setAD_Table_ID (int AD_Table_ID);
|
||||
public void setAD_Table_ID (int AD_Table_ID);
|
||||
|
||||
/** Get Table.
|
||||
* Database Table information
|
||||
* Database Table information
|
||||
*/
|
||||
public int getAD_Table_ID();
|
||||
public int getAD_Table_ID();
|
||||
|
||||
public I_AD_Table getI_AD_Table() throws Exception;
|
||||
public I_AD_Table getAD_Table() throws Exception;
|
||||
|
||||
/** Column name Args */
|
||||
public static final String COLUMNNAME_Args = "Args";
|
||||
|
||||
/** Set Args */
|
||||
public void setArgs (String Args);
|
||||
|
||||
/** Get Args */
|
||||
public String getArgs();
|
||||
|
||||
/** Column name ClassName */
|
||||
public static final String COLUMNNAME_ClassName = "ClassName";
|
||||
|
||||
/** Set ClassName */
|
||||
public void setClassName (String ClassName);
|
||||
|
||||
/** Get ClassName */
|
||||
public String getClassName();
|
||||
|
||||
/** Column name CreateCopy */
|
||||
public static final String COLUMNNAME_CreateCopy = "CreateCopy";
|
||||
public static final String COLUMNNAME_CreateCopy = "CreateCopy";
|
||||
|
||||
/** Set Create Copy */
|
||||
public void setCreateCopy (String CreateCopy);
|
||||
public void setCreateCopy (String CreateCopy);
|
||||
|
||||
/** Get Create Copy */
|
||||
public String getCreateCopy();
|
||||
public String getCreateCopy();
|
||||
|
||||
/** Column name Description */
|
||||
public static final String COLUMNNAME_Description = "Description";
|
||||
public static final String COLUMNNAME_Description = "Description";
|
||||
|
||||
/** Set Description.
|
||||
* Optional short description of the record
|
||||
* Optional short description of the record
|
||||
*/
|
||||
public void setDescription (String Description);
|
||||
public void setDescription (String Description);
|
||||
|
||||
/** Get Description.
|
||||
* Optional short description of the record
|
||||
* Optional short description of the record
|
||||
*/
|
||||
public String getDescription();
|
||||
public String getDescription();
|
||||
|
||||
/** Column name FooterMargin */
|
||||
public static final String COLUMNNAME_FooterMargin = "FooterMargin";
|
||||
public static final String COLUMNNAME_FooterMargin = "FooterMargin";
|
||||
|
||||
/** Set Footer Margin.
|
||||
* Margin of the Footer in 1/72 of an inch
|
||||
* Margin of the Footer in 1/72 of an inch
|
||||
*/
|
||||
public void setFooterMargin (int FooterMargin);
|
||||
public void setFooterMargin (int FooterMargin);
|
||||
|
||||
/** Get Footer Margin.
|
||||
* Margin of the Footer in 1/72 of an inch
|
||||
* Margin of the Footer in 1/72 of an inch
|
||||
*/
|
||||
public int getFooterMargin();
|
||||
public int getFooterMargin();
|
||||
|
||||
/** Column name HeaderMargin */
|
||||
public static final String COLUMNNAME_HeaderMargin = "HeaderMargin";
|
||||
public static final String COLUMNNAME_HeaderMargin = "HeaderMargin";
|
||||
|
||||
/** Set Header Margin.
|
||||
* Margin of the Header in 1/72 of an inch
|
||||
* Margin of the Header in 1/72 of an inch
|
||||
*/
|
||||
public void setHeaderMargin (int HeaderMargin);
|
||||
public void setHeaderMargin (int HeaderMargin);
|
||||
|
||||
/** Get Header Margin.
|
||||
* Margin of the Header in 1/72 of an inch
|
||||
* Margin of the Header in 1/72 of an inch
|
||||
*/
|
||||
public int getHeaderMargin();
|
||||
public int getHeaderMargin();
|
||||
|
||||
/** Column name IsDefault */
|
||||
public static final String COLUMNNAME_IsDefault = "IsDefault";
|
||||
public static final String COLUMNNAME_IsDefault = "IsDefault";
|
||||
|
||||
/** Set Default.
|
||||
* Default value
|
||||
* Default value
|
||||
*/
|
||||
public void setIsDefault (boolean IsDefault);
|
||||
public void setIsDefault (boolean IsDefault);
|
||||
|
||||
/** Get Default.
|
||||
* Default value
|
||||
* Default value
|
||||
*/
|
||||
public boolean isDefault();
|
||||
public boolean isDefault();
|
||||
|
||||
/** Column name IsForm */
|
||||
public static final String COLUMNNAME_IsForm = "IsForm";
|
||||
public static final String COLUMNNAME_IsForm = "IsForm";
|
||||
|
||||
/** Set Form.
|
||||
* If Selected, a Form is printed, if not selected a columnar List report
|
||||
* If Selected, a Form is printed, if not selected a columnar List report
|
||||
*/
|
||||
public void setIsForm (boolean IsForm);
|
||||
public void setIsForm (boolean IsForm);
|
||||
|
||||
/** Get Form.
|
||||
* If Selected, a Form is printed, if not selected a columnar List report
|
||||
* If Selected, a Form is printed, if not selected a columnar List report
|
||||
*/
|
||||
public boolean isForm();
|
||||
public boolean isForm();
|
||||
|
||||
/** Column name IsStandardHeaderFooter */
|
||||
public static final String COLUMNNAME_IsStandardHeaderFooter = "IsStandardHeaderFooter";
|
||||
public static final String COLUMNNAME_IsStandardHeaderFooter = "IsStandardHeaderFooter";
|
||||
|
||||
/** Set Standard Header/Footer.
|
||||
* The standard Header and Footer is used
|
||||
* The standard Header and Footer is used
|
||||
*/
|
||||
public void setIsStandardHeaderFooter (boolean IsStandardHeaderFooter);
|
||||
public void setIsStandardHeaderFooter (boolean IsStandardHeaderFooter);
|
||||
|
||||
/** Get Standard Header/Footer.
|
||||
* The standard Header and Footer is used
|
||||
* The standard Header and Footer is used
|
||||
*/
|
||||
public boolean isStandardHeaderFooter();
|
||||
public boolean isStandardHeaderFooter();
|
||||
|
||||
/** Column name IsTableBased */
|
||||
public static final String COLUMNNAME_IsTableBased = "IsTableBased";
|
||||
public static final String COLUMNNAME_IsTableBased = "IsTableBased";
|
||||
|
||||
/** Set Table Based.
|
||||
* Table based List Reporting
|
||||
* Table based List Reporting
|
||||
*/
|
||||
public void setIsTableBased (boolean IsTableBased);
|
||||
public void setIsTableBased (boolean IsTableBased);
|
||||
|
||||
/** Get Table Based.
|
||||
* Table based List Reporting
|
||||
* Table based List Reporting
|
||||
*/
|
||||
public boolean isTableBased();
|
||||
public boolean isTableBased();
|
||||
|
||||
/** Column name JasperProcess_ID */
|
||||
public static final String COLUMNNAME_JasperProcess_ID = "JasperProcess_ID";
|
||||
public static final String COLUMNNAME_JasperProcess_ID = "JasperProcess_ID";
|
||||
|
||||
/** Set Jasper Process.
|
||||
* The Jasper Process used by the printengine if any process defined
|
||||
* The Jasper Process used by the printengine if any process defined
|
||||
*/
|
||||
public void setJasperProcess_ID (int JasperProcess_ID);
|
||||
public void setJasperProcess_ID (int JasperProcess_ID);
|
||||
|
||||
/** Get Jasper Process.
|
||||
* The Jasper Process used by the printengine if any process defined
|
||||
* The Jasper Process used by the printengine if any process defined
|
||||
*/
|
||||
public int getJasperProcess_ID();
|
||||
public int getJasperProcess_ID();
|
||||
|
||||
/** Column name Name */
|
||||
public static final String COLUMNNAME_Name = "Name";
|
||||
public static final String COLUMNNAME_Name = "Name";
|
||||
|
||||
/** Set Name.
|
||||
* Alphanumeric identifier of the entity
|
||||
* Alphanumeric identifier of the entity
|
||||
*/
|
||||
public void setName (String Name);
|
||||
public void setName (String Name);
|
||||
|
||||
/** Get Name.
|
||||
* Alphanumeric identifier of the entity
|
||||
* Alphanumeric identifier of the entity
|
||||
*/
|
||||
public String getName();
|
||||
public String getName();
|
||||
|
||||
/** Column name PrinterName */
|
||||
public static final String COLUMNNAME_PrinterName = "PrinterName";
|
||||
public static final String COLUMNNAME_PrinterName = "PrinterName";
|
||||
|
||||
/** Set Printer Name.
|
||||
* Name of the Printer
|
||||
* Name of the Printer
|
||||
*/
|
||||
public void setPrinterName (String PrinterName);
|
||||
public void setPrinterName (String PrinterName);
|
||||
|
||||
/** Get Printer Name.
|
||||
* Name of the Printer
|
||||
* Name of the Printer
|
||||
*/
|
||||
public String getPrinterName();
|
||||
}
|
||||
public String getPrinterName();
|
||||
}
|
||||
|
|
|
@ -5,21 +5,21 @@
|
|||
* Copyright (C) Trifon Trifonov. *
|
||||
* Copyright (C) Contributors *
|
||||
* *
|
||||
* This program is free software;
|
||||
* This program is free software;
|
||||
you can redistribute it and/or *
|
||||
* modify it under the terms of the GNU General Public License *
|
||||
* as published by the Free Software Foundation;
|
||||
* as published by the Free Software Foundation;
|
||||
either version 2 *
|
||||
* of the License, or (at your option) any later version. *
|
||||
* *
|
||||
* This program is distributed in the hope that it will be useful, *
|
||||
* but WITHOUT ANY WARRANTY;
|
||||
* 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;
|
||||
* along with this program;
|
||||
if not, write to the Free Software *
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
|
||||
* MA 02110-1301, USA. *
|
||||
|
@ -30,444 +30,451 @@
|
|||
* Sponsors: *
|
||||
* - Company (http://www.site.com) *
|
||||
**********************************************************************/
|
||||
package org.compiere.model;
|
||||
|
||||
import java.util.*;
|
||||
import java.sql.Timestamp;
|
||||
import java.math.*;
|
||||
import org.compiere.util.*;
|
||||
package org.compiere.model;
|
||||
|
||||
/** Generated Interface for AD_Role
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.3.0 - 2007-08-24 11:39:27.421
|
||||
*/
|
||||
public interface I_AD_Role
|
||||
{
|
||||
import java.math.BigDecimal;
|
||||
import org.compiere.util.KeyNamePair;
|
||||
|
||||
/** Generated Interface for AD_Role
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.3.0
|
||||
*/
|
||||
public interface I_AD_Role
|
||||
{
|
||||
|
||||
/** TableName=AD_Role */
|
||||
public static final String Table_Name = "AD_Role";
|
||||
public static final String Table_Name = "AD_Role";
|
||||
|
||||
/** AD_Table_ID=156 */
|
||||
public static final int Table_ID = MTable.getTable_ID(Table_Name);
|
||||
public static final int Table_ID = MTable.getTable_ID(Table_Name);
|
||||
|
||||
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
|
||||
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
|
||||
|
||||
/** AccessLevel = 6 - System - Client
|
||||
*/
|
||||
BigDecimal accessLevel = new BigDecimal(6);
|
||||
BigDecimal accessLevel = BigDecimal.valueOf(6);
|
||||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name AD_Role_ID */
|
||||
public static final String COLUMNNAME_AD_Role_ID = "AD_Role_ID";
|
||||
public static final String COLUMNNAME_AD_Role_ID = "AD_Role_ID";
|
||||
|
||||
/** Set Role.
|
||||
* Responsibility Role
|
||||
* Responsibility Role
|
||||
*/
|
||||
public void setAD_Role_ID (int AD_Role_ID);
|
||||
public void setAD_Role_ID (int AD_Role_ID);
|
||||
|
||||
/** Get Role.
|
||||
* Responsibility Role
|
||||
* Responsibility Role
|
||||
*/
|
||||
public int getAD_Role_ID();
|
||||
public int getAD_Role_ID();
|
||||
|
||||
/** Column name AD_Tree_Menu_ID */
|
||||
public static final String COLUMNNAME_AD_Tree_Menu_ID = "AD_Tree_Menu_ID";
|
||||
public static final String COLUMNNAME_AD_Tree_Menu_ID = "AD_Tree_Menu_ID";
|
||||
|
||||
/** Set Menu Tree.
|
||||
* Tree of the menu
|
||||
* Tree of the menu
|
||||
*/
|
||||
public void setAD_Tree_Menu_ID (int AD_Tree_Menu_ID);
|
||||
public void setAD_Tree_Menu_ID (int AD_Tree_Menu_ID);
|
||||
|
||||
/** Get Menu Tree.
|
||||
* Tree of the menu
|
||||
* Tree of the menu
|
||||
*/
|
||||
public int getAD_Tree_Menu_ID();
|
||||
public int getAD_Tree_Menu_ID();
|
||||
|
||||
/** Column name AD_Tree_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Tree_Org_ID = "AD_Tree_Org_ID";
|
||||
public static final String COLUMNNAME_AD_Tree_Org_ID = "AD_Tree_Org_ID";
|
||||
|
||||
/** Set Organization Tree.
|
||||
* Tree to determine organizational hierarchy
|
||||
* Tree to determine organizational hierarchy
|
||||
*/
|
||||
public void setAD_Tree_Org_ID (int AD_Tree_Org_ID);
|
||||
public void setAD_Tree_Org_ID (int AD_Tree_Org_ID);
|
||||
|
||||
/** Get Organization Tree.
|
||||
* Tree to determine organizational hierarchy
|
||||
* Tree to determine organizational hierarchy
|
||||
*/
|
||||
public int getAD_Tree_Org_ID();
|
||||
public int getAD_Tree_Org_ID();
|
||||
|
||||
/** Column name Allow_Info_Account */
|
||||
public static final String COLUMNNAME_Allow_Info_Account = "Allow_Info_Account";
|
||||
public static final String COLUMNNAME_Allow_Info_Account = "Allow_Info_Account";
|
||||
|
||||
/** Set Allow Info Account */
|
||||
public void setAllow_Info_Account (boolean Allow_Info_Account);
|
||||
public void setAllow_Info_Account (boolean Allow_Info_Account);
|
||||
|
||||
/** Get Allow Info Account */
|
||||
public boolean isAllow_Info_Account();
|
||||
public boolean isAllow_Info_Account();
|
||||
|
||||
/** Column name Allow_Info_Asset */
|
||||
public static final String COLUMNNAME_Allow_Info_Asset = "Allow_Info_Asset";
|
||||
public static final String COLUMNNAME_Allow_Info_Asset = "Allow_Info_Asset";
|
||||
|
||||
/** Set Allow Info Asset */
|
||||
public void setAllow_Info_Asset (boolean Allow_Info_Asset);
|
||||
public void setAllow_Info_Asset (boolean Allow_Info_Asset);
|
||||
|
||||
/** Get Allow Info Asset */
|
||||
public boolean isAllow_Info_Asset();
|
||||
public boolean isAllow_Info_Asset();
|
||||
|
||||
/** Column name Allow_Info_BPartner */
|
||||
public static final String COLUMNNAME_Allow_Info_BPartner = "Allow_Info_BPartner";
|
||||
public static final String COLUMNNAME_Allow_Info_BPartner = "Allow_Info_BPartner";
|
||||
|
||||
/** Set Allow Info BPartner */
|
||||
public void setAllow_Info_BPartner (boolean Allow_Info_BPartner);
|
||||
public void setAllow_Info_BPartner (boolean Allow_Info_BPartner);
|
||||
|
||||
/** Get Allow Info BPartner */
|
||||
public boolean isAllow_Info_BPartner();
|
||||
public boolean isAllow_Info_BPartner();
|
||||
|
||||
/** Column name Allow_Info_CashJournal */
|
||||
public static final String COLUMNNAME_Allow_Info_CashJournal = "Allow_Info_CashJournal";
|
||||
public static final String COLUMNNAME_Allow_Info_CashJournal = "Allow_Info_CashJournal";
|
||||
|
||||
/** Set Allow Info CashJournal */
|
||||
public void setAllow_Info_CashJournal (boolean Allow_Info_CashJournal);
|
||||
public void setAllow_Info_CashJournal (boolean Allow_Info_CashJournal);
|
||||
|
||||
/** Get Allow Info CashJournal */
|
||||
public boolean isAllow_Info_CashJournal();
|
||||
public boolean isAllow_Info_CashJournal();
|
||||
|
||||
/** Column name Allow_Info_InOut */
|
||||
public static final String COLUMNNAME_Allow_Info_InOut = "Allow_Info_InOut";
|
||||
public static final String COLUMNNAME_Allow_Info_InOut = "Allow_Info_InOut";
|
||||
|
||||
/** Set Allow Info InOut */
|
||||
public void setAllow_Info_InOut (boolean Allow_Info_InOut);
|
||||
public void setAllow_Info_InOut (boolean Allow_Info_InOut);
|
||||
|
||||
/** Get Allow Info InOut */
|
||||
public boolean isAllow_Info_InOut();
|
||||
public boolean isAllow_Info_InOut();
|
||||
|
||||
/** Column name Allow_Info_Invoice */
|
||||
public static final String COLUMNNAME_Allow_Info_Invoice = "Allow_Info_Invoice";
|
||||
public static final String COLUMNNAME_Allow_Info_Invoice = "Allow_Info_Invoice";
|
||||
|
||||
/** Set Allow Info Invoice */
|
||||
public void setAllow_Info_Invoice (boolean Allow_Info_Invoice);
|
||||
public void setAllow_Info_Invoice (boolean Allow_Info_Invoice);
|
||||
|
||||
/** Get Allow Info Invoice */
|
||||
public boolean isAllow_Info_Invoice();
|
||||
public boolean isAllow_Info_Invoice();
|
||||
|
||||
/** Column name Allow_Info_Order */
|
||||
public static final String COLUMNNAME_Allow_Info_Order = "Allow_Info_Order";
|
||||
public static final String COLUMNNAME_Allow_Info_Order = "Allow_Info_Order";
|
||||
|
||||
/** Set Allow Info Order */
|
||||
public void setAllow_Info_Order (boolean Allow_Info_Order);
|
||||
public void setAllow_Info_Order (boolean Allow_Info_Order);
|
||||
|
||||
/** Get Allow Info Order */
|
||||
public boolean isAllow_Info_Order();
|
||||
public boolean isAllow_Info_Order();
|
||||
|
||||
/** Column name Allow_Info_Payment */
|
||||
public static final String COLUMNNAME_Allow_Info_Payment = "Allow_Info_Payment";
|
||||
public static final String COLUMNNAME_Allow_Info_Payment = "Allow_Info_Payment";
|
||||
|
||||
/** Set Allow Info Payment */
|
||||
public void setAllow_Info_Payment (boolean Allow_Info_Payment);
|
||||
public void setAllow_Info_Payment (boolean Allow_Info_Payment);
|
||||
|
||||
/** Get Allow Info Payment */
|
||||
public boolean isAllow_Info_Payment();
|
||||
public boolean isAllow_Info_Payment();
|
||||
|
||||
/** Column name Allow_Info_Product */
|
||||
public static final String COLUMNNAME_Allow_Info_Product = "Allow_Info_Product";
|
||||
public static final String COLUMNNAME_Allow_Info_Product = "Allow_Info_Product";
|
||||
|
||||
/** Set Allow Info Product */
|
||||
public void setAllow_Info_Product (boolean Allow_Info_Product);
|
||||
public void setAllow_Info_Product (boolean Allow_Info_Product);
|
||||
|
||||
/** Get Allow Info Product */
|
||||
public boolean isAllow_Info_Product();
|
||||
public boolean isAllow_Info_Product();
|
||||
|
||||
/** Column name Allow_Info_Resource */
|
||||
public static final String COLUMNNAME_Allow_Info_Resource = "Allow_Info_Resource";
|
||||
public static final String COLUMNNAME_Allow_Info_Resource = "Allow_Info_Resource";
|
||||
|
||||
/** Set Allow Info Resource */
|
||||
public void setAllow_Info_Resource (boolean Allow_Info_Resource);
|
||||
public void setAllow_Info_Resource (boolean Allow_Info_Resource);
|
||||
|
||||
/** Get Allow Info Resource */
|
||||
public boolean isAllow_Info_Resource();
|
||||
public boolean isAllow_Info_Resource();
|
||||
|
||||
/** Column name Allow_Info_Schedule */
|
||||
public static final String COLUMNNAME_Allow_Info_Schedule = "Allow_Info_Schedule";
|
||||
public static final String COLUMNNAME_Allow_Info_Schedule = "Allow_Info_Schedule";
|
||||
|
||||
/** Set Allow Info Schedule */
|
||||
public void setAllow_Info_Schedule (boolean Allow_Info_Schedule);
|
||||
public void setAllow_Info_Schedule (boolean Allow_Info_Schedule);
|
||||
|
||||
/** Get Allow Info Schedule */
|
||||
public boolean isAllow_Info_Schedule();
|
||||
public boolean isAllow_Info_Schedule();
|
||||
|
||||
/** Column name AmtApproval */
|
||||
public static final String COLUMNNAME_AmtApproval = "AmtApproval";
|
||||
public static final String COLUMNNAME_AmtApproval = "AmtApproval";
|
||||
|
||||
/** Set Approval Amount.
|
||||
* The approval amount limit for this role
|
||||
* The approval amount limit for this role
|
||||
*/
|
||||
public void setAmtApproval (BigDecimal AmtApproval);
|
||||
public void setAmtApproval (BigDecimal AmtApproval);
|
||||
|
||||
/** Get Approval Amount.
|
||||
* The approval amount limit for this role
|
||||
* The approval amount limit for this role
|
||||
*/
|
||||
public BigDecimal getAmtApproval();
|
||||
public BigDecimal getAmtApproval();
|
||||
|
||||
/** Column name C_Currency_ID */
|
||||
public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID";
|
||||
public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID";
|
||||
|
||||
/** Set Currency.
|
||||
* The Currency for this record
|
||||
* The Currency for this record
|
||||
*/
|
||||
public void setC_Currency_ID (int C_Currency_ID);
|
||||
public void setC_Currency_ID (int C_Currency_ID);
|
||||
|
||||
/** Get Currency.
|
||||
* The Currency for this record
|
||||
* The Currency for this record
|
||||
*/
|
||||
public int getC_Currency_ID();
|
||||
public int getC_Currency_ID();
|
||||
|
||||
public I_C_Currency getI_C_Currency() throws Exception;
|
||||
public I_C_Currency getC_Currency() throws Exception;
|
||||
|
||||
/** Column name ConfirmQueryRecords */
|
||||
public static final String COLUMNNAME_ConfirmQueryRecords = "ConfirmQueryRecords";
|
||||
public static final String COLUMNNAME_ConfirmQueryRecords = "ConfirmQueryRecords";
|
||||
|
||||
/** Set Confirm Query Records.
|
||||
* Require Confirmation if more records will be returned by the query (If not defined 500)
|
||||
* Require Confirmation if more records will be returned by the query (If not defined 500)
|
||||
*/
|
||||
public void setConfirmQueryRecords (int ConfirmQueryRecords);
|
||||
public void setConfirmQueryRecords (int ConfirmQueryRecords);
|
||||
|
||||
/** Get Confirm Query Records.
|
||||
* Require Confirmation if more records will be returned by the query (If not defined 500)
|
||||
* Require Confirmation if more records will be returned by the query (If not defined 500)
|
||||
*/
|
||||
public int getConfirmQueryRecords();
|
||||
public int getConfirmQueryRecords();
|
||||
|
||||
/** Column name ConnectionProfile */
|
||||
public static final String COLUMNNAME_ConnectionProfile = "ConnectionProfile";
|
||||
public static final String COLUMNNAME_ConnectionProfile = "ConnectionProfile";
|
||||
|
||||
/** Set Connection Profile.
|
||||
* How a Java Client connects to the server(s)
|
||||
* How a Java Client connects to the server(s)
|
||||
*/
|
||||
public void setConnectionProfile (String ConnectionProfile);
|
||||
public void setConnectionProfile (String ConnectionProfile);
|
||||
|
||||
/** Get Connection Profile.
|
||||
* How a Java Client connects to the server(s)
|
||||
* How a Java Client connects to the server(s)
|
||||
*/
|
||||
public String getConnectionProfile();
|
||||
public String getConnectionProfile();
|
||||
|
||||
/** Column name Description */
|
||||
public static final String COLUMNNAME_Description = "Description";
|
||||
public static final String COLUMNNAME_Description = "Description";
|
||||
|
||||
/** Set Description.
|
||||
* Optional short description of the record
|
||||
* Optional short description of the record
|
||||
*/
|
||||
public void setDescription (String Description);
|
||||
public void setDescription (String Description);
|
||||
|
||||
/** Get Description.
|
||||
* Optional short description of the record
|
||||
* Optional short description of the record
|
||||
*/
|
||||
public String getDescription();
|
||||
public String getDescription();
|
||||
|
||||
/** Column name IsAccessAllOrgs */
|
||||
public static final String COLUMNNAME_IsAccessAllOrgs = "IsAccessAllOrgs";
|
||||
public static final String COLUMNNAME_IsAccessAllOrgs = "IsAccessAllOrgs";
|
||||
|
||||
/** Set Access all Orgs.
|
||||
* Access all Organizations (no org access control) of the client
|
||||
* Access all Organizations (no org access control) of the client
|
||||
*/
|
||||
public void setIsAccessAllOrgs (boolean IsAccessAllOrgs);
|
||||
public void setIsAccessAllOrgs (boolean IsAccessAllOrgs);
|
||||
|
||||
/** Get Access all Orgs.
|
||||
* Access all Organizations (no org access control) of the client
|
||||
* Access all Organizations (no org access control) of the client
|
||||
*/
|
||||
public boolean isAccessAllOrgs();
|
||||
public boolean isAccessAllOrgs();
|
||||
|
||||
/** Column name IsCanApproveOwnDoc */
|
||||
public static final String COLUMNNAME_IsCanApproveOwnDoc = "IsCanApproveOwnDoc";
|
||||
public static final String COLUMNNAME_IsCanApproveOwnDoc = "IsCanApproveOwnDoc";
|
||||
|
||||
/** Set Approve own Documents.
|
||||
* Users with this role can approve their own documents
|
||||
* Users with this role can approve their own documents
|
||||
*/
|
||||
public void setIsCanApproveOwnDoc (boolean IsCanApproveOwnDoc);
|
||||
public void setIsCanApproveOwnDoc (boolean IsCanApproveOwnDoc);
|
||||
|
||||
/** Get Approve own Documents.
|
||||
* Users with this role can approve their own documents
|
||||
* Users with this role can approve their own documents
|
||||
*/
|
||||
public boolean isCanApproveOwnDoc();
|
||||
public boolean isCanApproveOwnDoc();
|
||||
|
||||
/** Column name IsCanExport */
|
||||
public static final String COLUMNNAME_IsCanExport = "IsCanExport";
|
||||
public static final String COLUMNNAME_IsCanExport = "IsCanExport";
|
||||
|
||||
/** Set Can Export.
|
||||
* Users with this role can export data
|
||||
* Users with this role can export data
|
||||
*/
|
||||
public void setIsCanExport (boolean IsCanExport);
|
||||
public void setIsCanExport (boolean IsCanExport);
|
||||
|
||||
/** Get Can Export.
|
||||
* Users with this role can export data
|
||||
* Users with this role can export data
|
||||
*/
|
||||
public boolean isCanExport();
|
||||
public boolean isCanExport();
|
||||
|
||||
/** Column name IsCanReport */
|
||||
public static final String COLUMNNAME_IsCanReport = "IsCanReport";
|
||||
public static final String COLUMNNAME_IsCanReport = "IsCanReport";
|
||||
|
||||
/** Set Can Report.
|
||||
* Users with this role can create reports
|
||||
* Users with this role can create reports
|
||||
*/
|
||||
public void setIsCanReport (boolean IsCanReport);
|
||||
public void setIsCanReport (boolean IsCanReport);
|
||||
|
||||
/** Get Can Report.
|
||||
* Users with this role can create reports
|
||||
* Users with this role can create reports
|
||||
*/
|
||||
public boolean isCanReport();
|
||||
public boolean isCanReport();
|
||||
|
||||
/** Column name IsChangeLog */
|
||||
public static final String COLUMNNAME_IsChangeLog = "IsChangeLog";
|
||||
public static final String COLUMNNAME_IsChangeLog = "IsChangeLog";
|
||||
|
||||
/** Set Maintain Change Log.
|
||||
* Maintain a log of changes
|
||||
* Maintain a log of changes
|
||||
*/
|
||||
public void setIsChangeLog (boolean IsChangeLog);
|
||||
public void setIsChangeLog (boolean IsChangeLog);
|
||||
|
||||
/** Get Maintain Change Log.
|
||||
* Maintain a log of changes
|
||||
* Maintain a log of changes
|
||||
*/
|
||||
public boolean isChangeLog();
|
||||
public boolean isChangeLog();
|
||||
|
||||
/** Column name IsManual */
|
||||
public static final String COLUMNNAME_IsManual = "IsManual";
|
||||
public static final String COLUMNNAME_IsManual = "IsManual";
|
||||
|
||||
/** Set Manual.
|
||||
* This is a manual process
|
||||
* This is a manual process
|
||||
*/
|
||||
public void setIsManual (boolean IsManual);
|
||||
public void setIsManual (boolean IsManual);
|
||||
|
||||
/** Get Manual.
|
||||
* This is a manual process
|
||||
* This is a manual process
|
||||
*/
|
||||
public boolean isManual();
|
||||
public boolean isManual();
|
||||
|
||||
/** Column name IsPersonalAccess */
|
||||
public static final String COLUMNNAME_IsPersonalAccess = "IsPersonalAccess";
|
||||
public static final String COLUMNNAME_IsPersonalAccess = "IsPersonalAccess";
|
||||
|
||||
/** Set Personal Access.
|
||||
* Allow access to all personal records
|
||||
* Allow access to all personal records
|
||||
*/
|
||||
public void setIsPersonalAccess (boolean IsPersonalAccess);
|
||||
public void setIsPersonalAccess (boolean IsPersonalAccess);
|
||||
|
||||
/** Get Personal Access.
|
||||
* Allow access to all personal records
|
||||
* Allow access to all personal records
|
||||
*/
|
||||
public boolean isPersonalAccess();
|
||||
public boolean isPersonalAccess();
|
||||
|
||||
/** Column name IsPersonalLock */
|
||||
public static final String COLUMNNAME_IsPersonalLock = "IsPersonalLock";
|
||||
public static final String COLUMNNAME_IsPersonalLock = "IsPersonalLock";
|
||||
|
||||
/** Set Personal Lock.
|
||||
* Allow users with role to lock access to personal records
|
||||
* Allow users with role to lock access to personal records
|
||||
*/
|
||||
public void setIsPersonalLock (boolean IsPersonalLock);
|
||||
public void setIsPersonalLock (boolean IsPersonalLock);
|
||||
|
||||
/** Get Personal Lock.
|
||||
* Allow users with role to lock access to personal records
|
||||
* Allow users with role to lock access to personal records
|
||||
*/
|
||||
public boolean isPersonalLock();
|
||||
public boolean isPersonalLock();
|
||||
|
||||
/** Column name IsShowAcct */
|
||||
public static final String COLUMNNAME_IsShowAcct = "IsShowAcct";
|
||||
public static final String COLUMNNAME_IsShowAcct = "IsShowAcct";
|
||||
|
||||
/** Set Show Accounting.
|
||||
* Users with this role can see accounting information
|
||||
* Users with this role can see accounting information
|
||||
*/
|
||||
public void setIsShowAcct (boolean IsShowAcct);
|
||||
public void setIsShowAcct (boolean IsShowAcct);
|
||||
|
||||
/** Get Show Accounting.
|
||||
* Users with this role can see accounting information
|
||||
* Users with this role can see accounting information
|
||||
*/
|
||||
public boolean isShowAcct();
|
||||
public boolean isShowAcct();
|
||||
|
||||
/** Column name IsUseUserOrgAccess */
|
||||
public static final String COLUMNNAME_IsUseUserOrgAccess = "IsUseUserOrgAccess";
|
||||
public static final String COLUMNNAME_IsUseUserOrgAccess = "IsUseUserOrgAccess";
|
||||
|
||||
/** Set Use User Org Access.
|
||||
* Use Org Access defined by user instead of Role Org Access
|
||||
* Use Org Access defined by user instead of Role Org Access
|
||||
*/
|
||||
public void setIsUseUserOrgAccess (boolean IsUseUserOrgAccess);
|
||||
public void setIsUseUserOrgAccess (boolean IsUseUserOrgAccess);
|
||||
|
||||
/** Get Use User Org Access.
|
||||
* Use Org Access defined by user instead of Role Org Access
|
||||
* Use Org Access defined by user instead of Role Org Access
|
||||
*/
|
||||
public boolean isUseUserOrgAccess();
|
||||
public boolean isUseUserOrgAccess();
|
||||
|
||||
/** Column name MaxQueryRecords */
|
||||
public static final String COLUMNNAME_MaxQueryRecords = "MaxQueryRecords";
|
||||
public static final String COLUMNNAME_MaxQueryRecords = "MaxQueryRecords";
|
||||
|
||||
/** Set Max Query Records.
|
||||
* If defined, you cannot query more records as defined - the query criteria needs to be changed to query less records
|
||||
* If defined, you cannot query more records as defined - the query criteria needs to be changed to query less records
|
||||
*/
|
||||
public void setMaxQueryRecords (int MaxQueryRecords);
|
||||
public void setMaxQueryRecords (int MaxQueryRecords);
|
||||
|
||||
/** Get Max Query Records.
|
||||
* If defined, you cannot query more records as defined - the query criteria needs to be changed to query less records
|
||||
* If defined, you cannot query more records as defined - the query criteria needs to be changed to query less records
|
||||
*/
|
||||
public int getMaxQueryRecords();
|
||||
public int getMaxQueryRecords();
|
||||
|
||||
/** Column name Name */
|
||||
public static final String COLUMNNAME_Name = "Name";
|
||||
public static final String COLUMNNAME_Name = "Name";
|
||||
|
||||
/** Set Name.
|
||||
* Alphanumeric identifier of the entity
|
||||
* Alphanumeric identifier of the entity
|
||||
*/
|
||||
public void setName (String Name);
|
||||
public void setName (String Name);
|
||||
|
||||
/** Get Name.
|
||||
* Alphanumeric identifier of the entity
|
||||
* Alphanumeric identifier of the entity
|
||||
*/
|
||||
public String getName();
|
||||
public String getName();
|
||||
|
||||
/** Column name OverwritePriceLimit */
|
||||
public static final String COLUMNNAME_OverwritePriceLimit = "OverwritePriceLimit";
|
||||
public static final String COLUMNNAME_OverwritePriceLimit = "OverwritePriceLimit";
|
||||
|
||||
/** Set Overwrite Price Limit.
|
||||
* Overwrite Price Limit if the Price List enforces the Price Limit
|
||||
* Overwrite Price Limit if the Price List enforces the Price Limit
|
||||
*/
|
||||
public void setOverwritePriceLimit (boolean OverwritePriceLimit);
|
||||
public void setOverwritePriceLimit (boolean OverwritePriceLimit);
|
||||
|
||||
/** Get Overwrite Price Limit.
|
||||
* Overwrite Price Limit if the Price List enforces the Price Limit
|
||||
* Overwrite Price Limit if the Price List enforces the Price Limit
|
||||
*/
|
||||
public boolean isOverwritePriceLimit();
|
||||
public boolean isOverwritePriceLimit();
|
||||
|
||||
/** Column name PreferenceType */
|
||||
public static final String COLUMNNAME_PreferenceType = "PreferenceType";
|
||||
public static final String COLUMNNAME_PreferenceType = "PreferenceType";
|
||||
|
||||
/** Set Preference Level.
|
||||
* Determines what preferences the user can set
|
||||
* Determines what preferences the user can set
|
||||
*/
|
||||
public void setPreferenceType (String PreferenceType);
|
||||
public void setPreferenceType (String PreferenceType);
|
||||
|
||||
/** Get Preference Level.
|
||||
* Determines what preferences the user can set
|
||||
* Determines what preferences the user can set
|
||||
*/
|
||||
public String getPreferenceType();
|
||||
public String getPreferenceType();
|
||||
|
||||
/** Column name Supervisor_ID */
|
||||
public static final String COLUMNNAME_Supervisor_ID = "Supervisor_ID";
|
||||
public static final String COLUMNNAME_Supervisor_ID = "Supervisor_ID";
|
||||
|
||||
/** Set Supervisor.
|
||||
* Supervisor for this user/organization - used for escalation and approval
|
||||
* Supervisor for this user/organization - used for escalation and approval
|
||||
*/
|
||||
public void setSupervisor_ID (int Supervisor_ID);
|
||||
public void setSupervisor_ID (int Supervisor_ID);
|
||||
|
||||
/** Get Supervisor.
|
||||
* Supervisor for this user/organization - used for escalation and approval
|
||||
* Supervisor for this user/organization - used for escalation and approval
|
||||
*/
|
||||
public int getSupervisor_ID();
|
||||
public int getSupervisor_ID();
|
||||
|
||||
/** Column name UserDiscount */
|
||||
public static final String COLUMNNAME_UserDiscount = "UserDiscount";
|
||||
|
||||
/** Set UserDiscount */
|
||||
public void setUserDiscount (BigDecimal UserDiscount);
|
||||
|
||||
/** Get UserDiscount */
|
||||
public BigDecimal getUserDiscount();
|
||||
|
||||
/** Column name UserLevel */
|
||||
public static final String COLUMNNAME_UserLevel = "UserLevel";
|
||||
public static final String COLUMNNAME_UserLevel = "UserLevel";
|
||||
|
||||
/** Set User Level.
|
||||
* System Client Organization
|
||||
* System Client Organization
|
||||
*/
|
||||
public void setUserLevel (String UserLevel);
|
||||
public void setUserLevel (String UserLevel);
|
||||
|
||||
/** Get User Level.
|
||||
* System Client Organization
|
||||
* System Client Organization
|
||||
*/
|
||||
public String getUserLevel();
|
||||
}
|
||||
public String getUserLevel();
|
||||
}
|
||||
|
|
|
@ -5,21 +5,21 @@
|
|||
* Copyright (C) Trifon Trifonov. *
|
||||
* Copyright (C) Contributors *
|
||||
* *
|
||||
* This program is free software;
|
||||
* This program is free software;
|
||||
you can redistribute it and/or *
|
||||
* modify it under the terms of the GNU General Public License *
|
||||
* as published by the Free Software Foundation;
|
||||
* as published by the Free Software Foundation;
|
||||
either version 2 *
|
||||
* of the License, or (at your option) any later version. *
|
||||
* *
|
||||
* This program is distributed in the hope that it will be useful, *
|
||||
* but WITHOUT ANY WARRANTY;
|
||||
* 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;
|
||||
* along with this program;
|
||||
if not, write to the Free Software *
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
|
||||
* MA 02110-1301, USA. *
|
||||
|
@ -30,410 +30,418 @@
|
|||
* Sponsors: *
|
||||
* - Company (http://www.site.com) *
|
||||
**********************************************************************/
|
||||
package org.compiere.model;
|
||||
|
||||
import java.util.*;
|
||||
import java.sql.Timestamp;
|
||||
import java.math.*;
|
||||
import org.compiere.util.*;
|
||||
package org.compiere.model;
|
||||
|
||||
/** Generated Interface for AD_User
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.3.0 - 2007-08-24 11:39:29.625
|
||||
*/
|
||||
public interface I_AD_User
|
||||
{
|
||||
import java.math.BigDecimal;
|
||||
import java.sql.Timestamp;
|
||||
import org.compiere.util.KeyNamePair;
|
||||
|
||||
/** Generated Interface for AD_User
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.3.0
|
||||
*/
|
||||
public interface I_AD_User
|
||||
{
|
||||
|
||||
/** TableName=AD_User */
|
||||
public static final String Table_Name = "AD_User";
|
||||
public static final String Table_Name = "AD_User";
|
||||
|
||||
/** AD_Table_ID=114 */
|
||||
public static final int Table_ID = MTable.getTable_ID(Table_Name);
|
||||
public static final int Table_ID = MTable.getTable_ID(Table_Name);
|
||||
|
||||
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
|
||||
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
|
||||
|
||||
/** AccessLevel = 7 - System - Client - Org
|
||||
*/
|
||||
BigDecimal accessLevel = new BigDecimal(7);
|
||||
BigDecimal accessLevel = BigDecimal.valueOf(7);
|
||||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name AD_OrgTrx_ID */
|
||||
public static final String COLUMNNAME_AD_OrgTrx_ID = "AD_OrgTrx_ID";
|
||||
public static final String COLUMNNAME_AD_OrgTrx_ID = "AD_OrgTrx_ID";
|
||||
|
||||
/** Set Trx Organization.
|
||||
* Performing or initiating organization
|
||||
* Performing or initiating organization
|
||||
*/
|
||||
public void setAD_OrgTrx_ID (int AD_OrgTrx_ID);
|
||||
public void setAD_OrgTrx_ID (int AD_OrgTrx_ID);
|
||||
|
||||
/** Get Trx Organization.
|
||||
* Performing or initiating organization
|
||||
* Performing or initiating organization
|
||||
*/
|
||||
public int getAD_OrgTrx_ID();
|
||||
public int getAD_OrgTrx_ID();
|
||||
|
||||
/** Column name AD_User_ID */
|
||||
public static final String COLUMNNAME_AD_User_ID = "AD_User_ID";
|
||||
public static final String COLUMNNAME_AD_User_ID = "AD_User_ID";
|
||||
|
||||
/** Set User/Contact.
|
||||
* User within the system - Internal or Business Partner Contact
|
||||
* User within the system - Internal or Business Partner Contact
|
||||
*/
|
||||
public void setAD_User_ID (int AD_User_ID);
|
||||
public void setAD_User_ID (int AD_User_ID);
|
||||
|
||||
/** Get User/Contact.
|
||||
* User within the system - Internal or Business Partner Contact
|
||||
* User within the system - Internal or Business Partner Contact
|
||||
*/
|
||||
public int getAD_User_ID();
|
||||
public int getAD_User_ID();
|
||||
|
||||
/** Column name Birthday */
|
||||
public static final String COLUMNNAME_Birthday = "Birthday";
|
||||
public static final String COLUMNNAME_Birthday = "Birthday";
|
||||
|
||||
/** Set Birthday.
|
||||
* Birthday or Anniversary day
|
||||
* Birthday or Anniversary day
|
||||
*/
|
||||
public void setBirthday (Timestamp Birthday);
|
||||
public void setBirthday (Timestamp Birthday);
|
||||
|
||||
/** Get Birthday.
|
||||
* Birthday or Anniversary day
|
||||
* Birthday or Anniversary day
|
||||
*/
|
||||
public Timestamp getBirthday();
|
||||
public Timestamp getBirthday();
|
||||
|
||||
/** Column name C_BPartner_ID */
|
||||
public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID";
|
||||
public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID";
|
||||
|
||||
/** Set Business Partner .
|
||||
* Identifies a Business Partner
|
||||
* Identifies a Business Partner
|
||||
*/
|
||||
public void setC_BPartner_ID (int C_BPartner_ID);
|
||||
public void setC_BPartner_ID (int C_BPartner_ID);
|
||||
|
||||
/** Get Business Partner .
|
||||
* Identifies a Business Partner
|
||||
* Identifies a Business Partner
|
||||
*/
|
||||
public int getC_BPartner_ID();
|
||||
public int getC_BPartner_ID();
|
||||
|
||||
/** Column name C_BPartner_Location_ID */
|
||||
public static final String COLUMNNAME_C_BPartner_Location_ID = "C_BPartner_Location_ID";
|
||||
public static final String COLUMNNAME_C_BPartner_Location_ID = "C_BPartner_Location_ID";
|
||||
|
||||
/** Set Partner Location.
|
||||
* Identifies the (ship to) address for this Business Partner
|
||||
* Identifies the (ship to) address for this Business Partner
|
||||
*/
|
||||
public void setC_BPartner_Location_ID (int C_BPartner_Location_ID);
|
||||
public void setC_BPartner_Location_ID (int C_BPartner_Location_ID);
|
||||
|
||||
/** Get Partner Location.
|
||||
* Identifies the (ship to) address for this Business Partner
|
||||
* Identifies the (ship to) address for this Business Partner
|
||||
*/
|
||||
public int getC_BPartner_Location_ID();
|
||||
public int getC_BPartner_Location_ID();
|
||||
|
||||
public I_C_BPartner_Location getI_C_BPartner_Location() throws Exception;
|
||||
public I_C_BPartner_Location getC_BPartner_Location() throws Exception;
|
||||
|
||||
/** Column name C_Greeting_ID */
|
||||
public static final String COLUMNNAME_C_Greeting_ID = "C_Greeting_ID";
|
||||
public static final String COLUMNNAME_C_Greeting_ID = "C_Greeting_ID";
|
||||
|
||||
/** Set Greeting.
|
||||
* Greeting to print on correspondence
|
||||
* Greeting to print on correspondence
|
||||
*/
|
||||
public void setC_Greeting_ID (int C_Greeting_ID);
|
||||
public void setC_Greeting_ID (int C_Greeting_ID);
|
||||
|
||||
/** Get Greeting.
|
||||
* Greeting to print on correspondence
|
||||
* Greeting to print on correspondence
|
||||
*/
|
||||
public int getC_Greeting_ID();
|
||||
public int getC_Greeting_ID();
|
||||
|
||||
public I_C_Greeting getI_C_Greeting() throws Exception;
|
||||
public I_C_Greeting getC_Greeting() throws Exception;
|
||||
|
||||
/** Column name C_Job_ID */
|
||||
public static final String COLUMNNAME_C_Job_ID = "C_Job_ID";
|
||||
public static final String COLUMNNAME_C_Job_ID = "C_Job_ID";
|
||||
|
||||
/** Set Position.
|
||||
* Job Position
|
||||
* Job Position
|
||||
*/
|
||||
public void setC_Job_ID (int C_Job_ID);
|
||||
public void setC_Job_ID (int C_Job_ID);
|
||||
|
||||
/** Get Position.
|
||||
* Job Position
|
||||
* Job Position
|
||||
*/
|
||||
public int getC_Job_ID();
|
||||
public int getC_Job_ID();
|
||||
|
||||
public I_C_Job getI_C_Job() throws Exception;
|
||||
public I_C_Job getC_Job() throws Exception;
|
||||
|
||||
/** Column name Comments */
|
||||
public static final String COLUMNNAME_Comments = "Comments";
|
||||
public static final String COLUMNNAME_Comments = "Comments";
|
||||
|
||||
/** Set Comments.
|
||||
* Comments or additional information
|
||||
* Comments or additional information
|
||||
*/
|
||||
public void setComments (String Comments);
|
||||
public void setComments (String Comments);
|
||||
|
||||
/** Get Comments.
|
||||
* Comments or additional information
|
||||
* Comments or additional information
|
||||
*/
|
||||
public String getComments();
|
||||
public String getComments();
|
||||
|
||||
/** Column name ConnectionProfile */
|
||||
public static final String COLUMNNAME_ConnectionProfile = "ConnectionProfile";
|
||||
public static final String COLUMNNAME_ConnectionProfile = "ConnectionProfile";
|
||||
|
||||
/** Set Connection Profile.
|
||||
* How a Java Client connects to the server(s)
|
||||
* How a Java Client connects to the server(s)
|
||||
*/
|
||||
public void setConnectionProfile (String ConnectionProfile);
|
||||
public void setConnectionProfile (String ConnectionProfile);
|
||||
|
||||
/** Get Connection Profile.
|
||||
* How a Java Client connects to the server(s)
|
||||
* How a Java Client connects to the server(s)
|
||||
*/
|
||||
public String getConnectionProfile();
|
||||
public String getConnectionProfile();
|
||||
|
||||
/** Column name Description */
|
||||
public static final String COLUMNNAME_Description = "Description";
|
||||
public static final String COLUMNNAME_Description = "Description";
|
||||
|
||||
/** Set Description.
|
||||
* Optional short description of the record
|
||||
* Optional short description of the record
|
||||
*/
|
||||
public void setDescription (String Description);
|
||||
public void setDescription (String Description);
|
||||
|
||||
/** Get Description.
|
||||
* Optional short description of the record
|
||||
* Optional short description of the record
|
||||
*/
|
||||
public String getDescription();
|
||||
public String getDescription();
|
||||
|
||||
/** Column name EMail */
|
||||
public static final String COLUMNNAME_EMail = "EMail";
|
||||
public static final String COLUMNNAME_EMail = "EMail";
|
||||
|
||||
/** Set EMail Address.
|
||||
* Electronic Mail Address
|
||||
* Electronic Mail Address
|
||||
*/
|
||||
public void setEMail (String EMail);
|
||||
public void setEMail (String EMail);
|
||||
|
||||
/** Get EMail Address.
|
||||
* Electronic Mail Address
|
||||
* Electronic Mail Address
|
||||
*/
|
||||
public String getEMail();
|
||||
public String getEMail();
|
||||
|
||||
/** Column name EMailUser */
|
||||
public static final String COLUMNNAME_EMailUser = "EMailUser";
|
||||
public static final String COLUMNNAME_EMailUser = "EMailUser";
|
||||
|
||||
/** Set EMail User ID.
|
||||
* User Name (ID) in the Mail System
|
||||
* User Name (ID) in the Mail System
|
||||
*/
|
||||
public void setEMailUser (String EMailUser);
|
||||
public void setEMailUser (String EMailUser);
|
||||
|
||||
/** Get EMail User ID.
|
||||
* User Name (ID) in the Mail System
|
||||
* User Name (ID) in the Mail System
|
||||
*/
|
||||
public String getEMailUser();
|
||||
public String getEMailUser();
|
||||
|
||||
/** Column name EMailUserPW */
|
||||
public static final String COLUMNNAME_EMailUserPW = "EMailUserPW";
|
||||
public static final String COLUMNNAME_EMailUserPW = "EMailUserPW";
|
||||
|
||||
/** Set EMail User Password.
|
||||
* Password of your email user id
|
||||
* Password of your email user id
|
||||
*/
|
||||
public void setEMailUserPW (String EMailUserPW);
|
||||
public void setEMailUserPW (String EMailUserPW);
|
||||
|
||||
/** Get EMail User Password.
|
||||
* Password of your email user id
|
||||
* Password of your email user id
|
||||
*/
|
||||
public String getEMailUserPW();
|
||||
public String getEMailUserPW();
|
||||
|
||||
/** Column name EMailVerify */
|
||||
public static final String COLUMNNAME_EMailVerify = "EMailVerify";
|
||||
public static final String COLUMNNAME_EMailVerify = "EMailVerify";
|
||||
|
||||
/** Set Verification Info.
|
||||
* Verification information of EMail Address
|
||||
* Verification information of EMail Address
|
||||
*/
|
||||
public void setEMailVerify (String EMailVerify);
|
||||
public void setEMailVerify (String EMailVerify);
|
||||
|
||||
/** Get Verification Info.
|
||||
* Verification information of EMail Address
|
||||
* Verification information of EMail Address
|
||||
*/
|
||||
public String getEMailVerify();
|
||||
public String getEMailVerify();
|
||||
|
||||
/** Column name EMailVerifyDate */
|
||||
public static final String COLUMNNAME_EMailVerifyDate = "EMailVerifyDate";
|
||||
public static final String COLUMNNAME_EMailVerifyDate = "EMailVerifyDate";
|
||||
|
||||
/** Set EMail Verify.
|
||||
* Date Email was verified
|
||||
* Date Email was verified
|
||||
*/
|
||||
public void setEMailVerifyDate (Timestamp EMailVerifyDate);
|
||||
public void setEMailVerifyDate (Timestamp EMailVerifyDate);
|
||||
|
||||
/** Get EMail Verify.
|
||||
* Date Email was verified
|
||||
* Date Email was verified
|
||||
*/
|
||||
public Timestamp getEMailVerifyDate();
|
||||
public Timestamp getEMailVerifyDate();
|
||||
|
||||
/** Column name Fax */
|
||||
public static final String COLUMNNAME_Fax = "Fax";
|
||||
public static final String COLUMNNAME_Fax = "Fax";
|
||||
|
||||
/** Set Fax.
|
||||
* Facsimile number
|
||||
* Facsimile number
|
||||
*/
|
||||
public void setFax (String Fax);
|
||||
public void setFax (String Fax);
|
||||
|
||||
/** Get Fax.
|
||||
* Facsimile number
|
||||
* Facsimile number
|
||||
*/
|
||||
public String getFax();
|
||||
public String getFax();
|
||||
|
||||
/** Column name IsFullBPAccess */
|
||||
public static final String COLUMNNAME_IsFullBPAccess = "IsFullBPAccess";
|
||||
public static final String COLUMNNAME_IsFullBPAccess = "IsFullBPAccess";
|
||||
|
||||
/** Set Full BP Access.
|
||||
* The user/concat has full access to Business Partner information and resources
|
||||
* The user/concat has full access to Business Partner information and resources
|
||||
*/
|
||||
public void setIsFullBPAccess (boolean IsFullBPAccess);
|
||||
public void setIsFullBPAccess (boolean IsFullBPAccess);
|
||||
|
||||
/** Get Full BP Access.
|
||||
* The user/concat has full access to Business Partner information and resources
|
||||
* The user/concat has full access to Business Partner information and resources
|
||||
*/
|
||||
public boolean isFullBPAccess();
|
||||
public boolean isFullBPAccess();
|
||||
|
||||
/** Column name LDAPUser */
|
||||
public static final String COLUMNNAME_LDAPUser = "LDAPUser";
|
||||
public static final String COLUMNNAME_LDAPUser = "LDAPUser";
|
||||
|
||||
/** Set LDAP User Name.
|
||||
* User Name used for authorization via LDAP (directory) services
|
||||
* User Name used for authorization via LDAP (directory) services
|
||||
*/
|
||||
public void setLDAPUser (String LDAPUser);
|
||||
public void setLDAPUser (String LDAPUser);
|
||||
|
||||
/** Get LDAP User Name.
|
||||
* User Name used for authorization via LDAP (directory) services
|
||||
* User Name used for authorization via LDAP (directory) services
|
||||
*/
|
||||
public String getLDAPUser();
|
||||
public String getLDAPUser();
|
||||
|
||||
/** Column name LastContact */
|
||||
public static final String COLUMNNAME_LastContact = "LastContact";
|
||||
public static final String COLUMNNAME_LastContact = "LastContact";
|
||||
|
||||
/** Set Last Contact.
|
||||
* Date this individual was last contacted
|
||||
* Date this individual was last contacted
|
||||
*/
|
||||
public void setLastContact (Timestamp LastContact);
|
||||
public void setLastContact (Timestamp LastContact);
|
||||
|
||||
/** Get Last Contact.
|
||||
* Date this individual was last contacted
|
||||
* Date this individual was last contacted
|
||||
*/
|
||||
public Timestamp getLastContact();
|
||||
public Timestamp getLastContact();
|
||||
|
||||
/** Column name LastResult */
|
||||
public static final String COLUMNNAME_LastResult = "LastResult";
|
||||
public static final String COLUMNNAME_LastResult = "LastResult";
|
||||
|
||||
/** Set Last Result.
|
||||
* Result of last contact
|
||||
* Result of last contact
|
||||
*/
|
||||
public void setLastResult (String LastResult);
|
||||
public void setLastResult (String LastResult);
|
||||
|
||||
/** Get Last Result.
|
||||
* Result of last contact
|
||||
* Result of last contact
|
||||
*/
|
||||
public String getLastResult();
|
||||
public String getLastResult();
|
||||
|
||||
/** Column name Name */
|
||||
public static final String COLUMNNAME_Name = "Name";
|
||||
public static final String COLUMNNAME_Name = "Name";
|
||||
|
||||
/** Set Name.
|
||||
* Alphanumeric identifier of the entity
|
||||
* Alphanumeric identifier of the entity
|
||||
*/
|
||||
public void setName (String Name);
|
||||
public void setName (String Name);
|
||||
|
||||
/** Get Name.
|
||||
* Alphanumeric identifier of the entity
|
||||
* Alphanumeric identifier of the entity
|
||||
*/
|
||||
public String getName();
|
||||
public String getName();
|
||||
|
||||
/** Column name NotificationType */
|
||||
public static final String COLUMNNAME_NotificationType = "NotificationType";
|
||||
public static final String COLUMNNAME_NotificationType = "NotificationType";
|
||||
|
||||
/** Set Notification Type.
|
||||
* Type of Notifications
|
||||
* Type of Notifications
|
||||
*/
|
||||
public void setNotificationType (String NotificationType);
|
||||
public void setNotificationType (String NotificationType);
|
||||
|
||||
/** Get Notification Type.
|
||||
* Type of Notifications
|
||||
* Type of Notifications
|
||||
*/
|
||||
public String getNotificationType();
|
||||
public String getNotificationType();
|
||||
|
||||
/** Column name Password */
|
||||
public static final String COLUMNNAME_Password = "Password";
|
||||
public static final String COLUMNNAME_Password = "Password";
|
||||
|
||||
/** Set Password.
|
||||
* Password of any length (case sensitive)
|
||||
* Password of any length (case sensitive)
|
||||
*/
|
||||
public void setPassword (String Password);
|
||||
public void setPassword (String Password);
|
||||
|
||||
/** Get Password.
|
||||
* Password of any length (case sensitive)
|
||||
* Password of any length (case sensitive)
|
||||
*/
|
||||
public String getPassword();
|
||||
public String getPassword();
|
||||
|
||||
/** Column name Phone */
|
||||
public static final String COLUMNNAME_Phone = "Phone";
|
||||
public static final String COLUMNNAME_Phone = "Phone";
|
||||
|
||||
/** Set Phone.
|
||||
* Identifies a telephone number
|
||||
* Identifies a telephone number
|
||||
*/
|
||||
public void setPhone (String Phone);
|
||||
public void setPhone (String Phone);
|
||||
|
||||
/** Get Phone.
|
||||
* Identifies a telephone number
|
||||
* Identifies a telephone number
|
||||
*/
|
||||
public String getPhone();
|
||||
public String getPhone();
|
||||
|
||||
/** Column name Phone2 */
|
||||
public static final String COLUMNNAME_Phone2 = "Phone2";
|
||||
public static final String COLUMNNAME_Phone2 = "Phone2";
|
||||
|
||||
/** Set 2nd Phone.
|
||||
* Identifies an alternate telephone number.
|
||||
* Identifies an alternate telephone number.
|
||||
*/
|
||||
public void setPhone2 (String Phone2);
|
||||
public void setPhone2 (String Phone2);
|
||||
|
||||
/** Get 2nd Phone.
|
||||
* Identifies an alternate telephone number.
|
||||
* Identifies an alternate telephone number.
|
||||
*/
|
||||
public String getPhone2();
|
||||
public String getPhone2();
|
||||
|
||||
/** Column name Processing */
|
||||
public static final String COLUMNNAME_Processing = "Processing";
|
||||
public static final String COLUMNNAME_Processing = "Processing";
|
||||
|
||||
/** Set Process Now */
|
||||
public void setProcessing (boolean Processing);
|
||||
public void setProcessing (boolean Processing);
|
||||
|
||||
/** Get Process Now */
|
||||
public boolean isProcessing();
|
||||
public boolean isProcessing();
|
||||
|
||||
/** Column name Supervisor_ID */
|
||||
public static final String COLUMNNAME_Supervisor_ID = "Supervisor_ID";
|
||||
public static final String COLUMNNAME_Supervisor_ID = "Supervisor_ID";
|
||||
|
||||
/** Set Supervisor.
|
||||
* Supervisor for this user/organization - used for escalation and approval
|
||||
* Supervisor for this user/organization - used for escalation and approval
|
||||
*/
|
||||
public void setSupervisor_ID (int Supervisor_ID);
|
||||
public void setSupervisor_ID (int Supervisor_ID);
|
||||
|
||||
/** Get Supervisor.
|
||||
* Supervisor for this user/organization - used for escalation and approval
|
||||
* Supervisor for this user/organization - used for escalation and approval
|
||||
*/
|
||||
public int getSupervisor_ID();
|
||||
public int getSupervisor_ID();
|
||||
|
||||
/** Column name Title */
|
||||
public static final String COLUMNNAME_Title = "Title";
|
||||
public static final String COLUMNNAME_Title = "Title";
|
||||
|
||||
/** Set Title.
|
||||
* Name this entity is referred to as
|
||||
* Name this entity is referred to as
|
||||
*/
|
||||
public void setTitle (String Title);
|
||||
public void setTitle (String Title);
|
||||
|
||||
/** Get Title.
|
||||
* Name this entity is referred to as
|
||||
* Name this entity is referred to as
|
||||
*/
|
||||
public String getTitle();
|
||||
public String getTitle();
|
||||
|
||||
/** Column name UserPIN */
|
||||
public static final String COLUMNNAME_UserPIN = "UserPIN";
|
||||
|
||||
/** Set UserPIN */
|
||||
public void setUserPIN (String UserPIN);
|
||||
|
||||
/** Get UserPIN */
|
||||
public String getUserPIN();
|
||||
|
||||
/** Column name Value */
|
||||
public static final String COLUMNNAME_Value = "Value";
|
||||
public static final String COLUMNNAME_Value = "Value";
|
||||
|
||||
/** Set Search Key.
|
||||
* Search key for the record in the format required - must be unique
|
||||
* Search key for the record in the format required - must be unique
|
||||
*/
|
||||
public void setValue (String Value);
|
||||
public void setValue (String Value);
|
||||
|
||||
/** Get Search Key.
|
||||
* Search key for the record in the format required - must be unique
|
||||
* Search key for the record in the format required - must be unique
|
||||
*/
|
||||
public String getValue();
|
||||
}
|
||||
public String getValue();
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue