Model classes for 5.1
This commit is contained in:
parent
d63062d0d0
commit
8fc27bc33c
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_AccessLog
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_AccessLog
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Alert
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Alert
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_AlertProcessor
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_AlertProcessor
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_AlertProcessorLog
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_AlertProcessorLog
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_AlertRecipient
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_AlertRecipient
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_AlertRule
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_AlertRule
|
||||
{
|
||||
|
|
|
@ -0,0 +1,179 @@
|
|||
/******************************************************************************
|
||||
* 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_AllClients_V
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_AllClients_V
|
||||
{
|
||||
|
||||
/** TableName=AD_AllClients_V */
|
||||
public static final String Table_Name = "AD_AllClients_V";
|
||||
|
||||
/** AD_Table_ID=200223 */
|
||||
public static final int Table_ID = 200223;
|
||||
|
||||
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
|
||||
|
||||
/** AccessLevel = 4 - System
|
||||
*/
|
||||
BigDecimal accessLevel = BigDecimal.valueOf(4);
|
||||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name AD_AllClients_V_ID */
|
||||
public static final String COLUMNNAME_AD_AllClients_V_ID = "AD_AllClients_V_ID";
|
||||
|
||||
/** Set All Clients */
|
||||
public void setAD_AllClients_V_ID (int AD_AllClients_V_ID);
|
||||
|
||||
/** Get All Clients */
|
||||
public int getAD_AllClients_V_ID();
|
||||
|
||||
/** Column name AD_AllClients_V_UU */
|
||||
public static final String COLUMNNAME_AD_AllClients_V_UU = "AD_AllClients_V_UU";
|
||||
|
||||
/** Set AD_AllClients_V_UU */
|
||||
public void setAD_AllClients_V_UU (String AD_AllClients_V_UU);
|
||||
|
||||
/** Get AD_AllClients_V_UU */
|
||||
public String getAD_AllClients_V_UU();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Language */
|
||||
public static final String COLUMNNAME_AD_Language = "AD_Language";
|
||||
|
||||
/** Set Language.
|
||||
* Language for this entity
|
||||
*/
|
||||
public void setAD_Language (String AD_Language);
|
||||
|
||||
/** Get Language.
|
||||
* Language for this entity
|
||||
*/
|
||||
public String getAD_Language();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** 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 Description */
|
||||
public static final String COLUMNNAME_Description = "Description";
|
||||
|
||||
/** Set Description.
|
||||
* Optional short description of the record
|
||||
*/
|
||||
public void setDescription (String Description);
|
||||
|
||||
/** Get Description.
|
||||
* Optional short description of the record
|
||||
*/
|
||||
public String getDescription();
|
||||
|
||||
/** 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 Name */
|
||||
public static final String COLUMNNAME_Name = "Name";
|
||||
|
||||
/** Set Name.
|
||||
* Alphanumeric identifier of the entity
|
||||
*/
|
||||
public void setName (String Name);
|
||||
|
||||
/** Get Name.
|
||||
* Alphanumeric identifier of the entity
|
||||
*/
|
||||
public String getName();
|
||||
|
||||
/** 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();
|
||||
|
||||
/** Column name Value */
|
||||
public static final String COLUMNNAME_Value = "Value";
|
||||
|
||||
/** Set Search Key.
|
||||
* Search key for the record in the format required - must be unique
|
||||
*/
|
||||
public void setValue (String Value);
|
||||
|
||||
/** Get Search Key.
|
||||
* Search key for the record in the format required - must be unique
|
||||
*/
|
||||
public String getValue();
|
||||
}
|
|
@ -0,0 +1,292 @@
|
|||
/******************************************************************************
|
||||
* 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_AllUsers_V
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_AllUsers_V
|
||||
{
|
||||
|
||||
/** TableName=AD_AllUsers_V */
|
||||
public static final String Table_Name = "AD_AllUsers_V";
|
||||
|
||||
/** AD_Table_ID=200224 */
|
||||
public static final int Table_ID = 200224;
|
||||
|
||||
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
|
||||
|
||||
/** AccessLevel = 4 - System
|
||||
*/
|
||||
BigDecimal accessLevel = BigDecimal.valueOf(4);
|
||||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name AD_AllClients_V_ID */
|
||||
public static final String COLUMNNAME_AD_AllClients_V_ID = "AD_AllClients_V_ID";
|
||||
|
||||
/** Set All Clients */
|
||||
public void setAD_AllClients_V_ID (int AD_AllClients_V_ID);
|
||||
|
||||
/** Get All Clients */
|
||||
public int getAD_AllClients_V_ID();
|
||||
|
||||
public org.compiere.model.I_AD_AllClients_V getAD_AllClients_V() throws RuntimeException;
|
||||
|
||||
/** Column name AD_AllUsers_V_ID */
|
||||
public static final String COLUMNNAME_AD_AllUsers_V_ID = "AD_AllUsers_V_ID";
|
||||
|
||||
/** Set All Users */
|
||||
public void setAD_AllUsers_V_ID (int AD_AllUsers_V_ID);
|
||||
|
||||
/** Get All Users */
|
||||
public int getAD_AllUsers_V_ID();
|
||||
|
||||
/** Column name AD_AllUsers_V_UU */
|
||||
public static final String COLUMNNAME_AD_AllUsers_V_UU = "AD_AllUsers_V_UU";
|
||||
|
||||
/** Set AD_AllUsers_V_UU */
|
||||
public void setAD_AllUsers_V_UU (String AD_AllUsers_V_UU);
|
||||
|
||||
/** Get AD_AllUsers_V_UU */
|
||||
public String getAD_AllUsers_V_UU();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/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 client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** 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 DateLastLogin */
|
||||
public static final String COLUMNNAME_DateLastLogin = "DateLastLogin";
|
||||
|
||||
/** Set Date Last Login */
|
||||
public void setDateLastLogin (Timestamp DateLastLogin);
|
||||
|
||||
/** Get Date Last Login */
|
||||
public Timestamp getDateLastLogin();
|
||||
|
||||
/** Column name DatePasswordChanged */
|
||||
public static final String COLUMNNAME_DatePasswordChanged = "DatePasswordChanged";
|
||||
|
||||
/** Set Date Password Changed */
|
||||
public void setDatePasswordChanged (Timestamp DatePasswordChanged);
|
||||
|
||||
/** Get Date Password Changed */
|
||||
public Timestamp getDatePasswordChanged();
|
||||
|
||||
/** Column name Description */
|
||||
public static final String COLUMNNAME_Description = "Description";
|
||||
|
||||
/** Set Description.
|
||||
* Optional short description of the record
|
||||
*/
|
||||
public void setDescription (String Description);
|
||||
|
||||
/** Get Description.
|
||||
* Optional short description of the record
|
||||
*/
|
||||
public String getDescription();
|
||||
|
||||
/** 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 FailedLoginCount */
|
||||
public static final String COLUMNNAME_FailedLoginCount = "FailedLoginCount";
|
||||
|
||||
/** Set Failed Login Count */
|
||||
public void setFailedLoginCount (int FailedLoginCount);
|
||||
|
||||
/** Get Failed Login Count */
|
||||
public int getFailedLoginCount();
|
||||
|
||||
/** 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 IsExpired */
|
||||
public static final String COLUMNNAME_IsExpired = "IsExpired";
|
||||
|
||||
/** Set Expired */
|
||||
public void setIsExpired (boolean IsExpired);
|
||||
|
||||
/** Get Expired */
|
||||
public boolean isExpired();
|
||||
|
||||
/** Column name IsLocked */
|
||||
public static final String COLUMNNAME_IsLocked = "IsLocked";
|
||||
|
||||
/** Set Locked */
|
||||
public void setIsLocked (boolean IsLocked);
|
||||
|
||||
/** Get Locked */
|
||||
public boolean isLocked();
|
||||
|
||||
/** Column name IsNoPasswordReset */
|
||||
public static final String COLUMNNAME_IsNoPasswordReset = "IsNoPasswordReset";
|
||||
|
||||
/** Set No Password Reset */
|
||||
public void setIsNoPasswordReset (boolean IsNoPasswordReset);
|
||||
|
||||
/** Get No Password Reset */
|
||||
public boolean isNoPasswordReset();
|
||||
|
||||
/** Column name LDAPUser */
|
||||
public static final String COLUMNNAME_LDAPUser = "LDAPUser";
|
||||
|
||||
/** Set LDAP User Name.
|
||||
* User Name used for authorization via LDAP (directory) services
|
||||
*/
|
||||
public void setLDAPUser (String LDAPUser);
|
||||
|
||||
/** Get LDAP User Name.
|
||||
* User Name used for authorization via LDAP (directory) services
|
||||
*/
|
||||
public String getLDAPUser();
|
||||
|
||||
/** Column name Name */
|
||||
public static final String COLUMNNAME_Name = "Name";
|
||||
|
||||
/** Set Name.
|
||||
* Alphanumeric identifier of the entity
|
||||
*/
|
||||
public void setName (String Name);
|
||||
|
||||
/** Get Name.
|
||||
* Alphanumeric identifier of the entity
|
||||
*/
|
||||
public String getName();
|
||||
|
||||
/** Column name Password */
|
||||
public static final String COLUMNNAME_Password = "Password";
|
||||
|
||||
/** Set Password.
|
||||
* Password of any length (case sensitive)
|
||||
*/
|
||||
public void setPassword (String Password);
|
||||
|
||||
/** Get Password.
|
||||
* Password of any length (case sensitive)
|
||||
*/
|
||||
public String getPassword();
|
||||
|
||||
/** Column name Salt */
|
||||
public static final String COLUMNNAME_Salt = "Salt";
|
||||
|
||||
/** Set Salt.
|
||||
* Random data added to improve password hash effectiveness
|
||||
*/
|
||||
public void setSalt (String Salt);
|
||||
|
||||
/** Get Salt.
|
||||
* Random data added to improve password hash effectiveness
|
||||
*/
|
||||
public String getSalt();
|
||||
|
||||
/** 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();
|
||||
|
||||
/** Column name UserPIN */
|
||||
public static final String COLUMNNAME_UserPIN = "UserPIN";
|
||||
|
||||
/** Set User PIN */
|
||||
public void setUserPIN (String UserPIN);
|
||||
|
||||
/** Get User PIN */
|
||||
public String getUserPIN();
|
||||
|
||||
/** Column name Value */
|
||||
public static final String COLUMNNAME_Value = "Value";
|
||||
|
||||
/** Set Search Key.
|
||||
* Search key for the record in the format required - must be unique
|
||||
*/
|
||||
public void setValue (String Value);
|
||||
|
||||
/** Get Search Key.
|
||||
* Search key for the record in the format required - must be unique
|
||||
*/
|
||||
public String getValue();
|
||||
}
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Archive
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Archive
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Attachment
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Attachment
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_AttachmentNote
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_AttachmentNote
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Attribute
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Attribute
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Attribute_Value
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Attribute_Value
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_BroadcastMessage
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_BroadcastMessage
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_ChangeLog
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_ChangeLog
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Chart
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Chart
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_ChartDatasource
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_ChartDatasource
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Client
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Client
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_ClientInfo
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_ClientInfo
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_ClientShare
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_ClientShare
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Color
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Color
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Column
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Column
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Column_Access
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Column_Access
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_CtxHelp
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_CtxHelp
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_CtxHelpMsg
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_CtxHelpMsg
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_CtxHelpSuggestion
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_CtxHelpSuggestion
|
||||
{
|
||||
|
@ -137,6 +137,8 @@ public interface I_AD_CtxHelpSuggestion
|
|||
/** Get Tenant of User */
|
||||
public int getAD_UserClient_ID();
|
||||
|
||||
public org.compiere.model.I_AD_AllClients_V getAD_UserClient() throws RuntimeException;
|
||||
|
||||
/** Column name AD_User_ID */
|
||||
public static final String COLUMNNAME_AD_User_ID = "AD_User_ID";
|
||||
|
||||
|
@ -150,7 +152,7 @@ public interface I_AD_CtxHelpSuggestion
|
|||
*/
|
||||
public int getAD_User_ID();
|
||||
|
||||
public org.compiere.model.I_AD_User getAD_User() throws RuntimeException;
|
||||
public org.compiere.model.I_AD_AllUsers_V getAD_User() throws RuntimeException;
|
||||
|
||||
/** Column name CompareSuggestion */
|
||||
public static final String COLUMNNAME_CompareSuggestion = "CompareSuggestion";
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Desktop
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Desktop
|
||||
{
|
||||
|
@ -55,12 +55,12 @@ public interface I_AD_Desktop
|
|||
/** Set System Color.
|
||||
* Color for backgrounds or indicators
|
||||
*/
|
||||
public void setAD_Color_ID (int AD_Color_ID);
|
||||
public void setAD_Color_ID (String AD_Color_ID);
|
||||
|
||||
/** Get System Color.
|
||||
* Color for backgrounds or indicators
|
||||
*/
|
||||
public int getAD_Color_ID();
|
||||
public String getAD_Color_ID();
|
||||
|
||||
/** Column name AD_Desktop_ID */
|
||||
public static final String COLUMNNAME_AD_Desktop_ID = "AD_Desktop_ID";
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_DesktopWorkbench
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_DesktopWorkbench
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Document_Action_Access
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Document_Action_Access
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Element
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Element
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_EntityType
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_EntityType
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Error
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Error
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Field
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Field
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_FieldGroup
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_FieldGroup
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_FieldSuggestion
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_FieldSuggestion
|
||||
{
|
||||
|
@ -145,6 +145,8 @@ public interface I_AD_FieldSuggestion
|
|||
/** Get Tenant of User */
|
||||
public int getAD_UserClient_ID();
|
||||
|
||||
public org.compiere.model.I_AD_AllClients_V getAD_UserClient() throws RuntimeException;
|
||||
|
||||
/** Column name AD_User_ID */
|
||||
public static final String COLUMNNAME_AD_User_ID = "AD_User_ID";
|
||||
|
||||
|
@ -158,7 +160,7 @@ public interface I_AD_FieldSuggestion
|
|||
*/
|
||||
public int getAD_User_ID();
|
||||
|
||||
public org.compiere.model.I_AD_User getAD_User() throws RuntimeException;
|
||||
public org.compiere.model.I_AD_AllUsers_V getAD_User() throws RuntimeException;
|
||||
|
||||
/** Column name AD_Window_ID */
|
||||
public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID";
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Find
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Find
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Form
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Form
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Form_Access
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Form_Access
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_HouseKeeping
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_HouseKeeping
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Image
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Image
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_ImpFormat
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_ImpFormat
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_ImpFormat_Row
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_ImpFormat_Row
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_ImportTemplate
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_ImportTemplate
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_ImportTemplateAccess
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_ImportTemplateAccess
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_IndexColumn
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_IndexColumn
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_InfoColumn
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_InfoColumn
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_InfoProcess
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_InfoProcess
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_InfoRelated
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_InfoRelated
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_InfoWindow
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_InfoWindow
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_InfoWindow_Access
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_InfoWindow_Access
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Issue
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Issue
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_LabelPrinter
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_LabelPrinter
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_LabelPrinterFunction
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_LabelPrinterFunction
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Language
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Language
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_LdapAccess
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_LdapAccess
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_LdapProcessor
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_LdapProcessor
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_LdapProcessorLog
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_LdapProcessorLog
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Menu
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Menu
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Message
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Message
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_MigrationScript
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_MigrationScript
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_ModelValidator
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_ModelValidator
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Modification
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Modification
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Note
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Note
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Org
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Org
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_OrgInfo
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_OrgInfo
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_OrgType
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_OrgType
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PInstance
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_PInstance
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PInstance_Log
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_PInstance_Log
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PInstance_Para
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_PInstance_Para
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Package_Exp
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Package_Exp
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Package_Exp_Detail
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Package_Exp_Detail
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Package_Imp
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Package_Imp
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Package_Imp_Backup
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Package_Imp_Backup
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Package_Imp_Detail
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Package_Imp_Detail
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Package_Imp_Inst
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Package_Imp_Inst
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Package_Imp_Proc
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Package_Imp_Proc
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Package_UUID_Map
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Package_UUID_Map
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PasswordRule
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_PasswordRule
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Password_History
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Password_History
|
||||
{
|
||||
|
@ -35,9 +35,9 @@ public interface I_AD_Password_History
|
|||
|
||||
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
|
||||
|
||||
/** AccessLevel = 4 - System
|
||||
/** AccessLevel = 7 - System - Client - Org
|
||||
*/
|
||||
BigDecimal accessLevel = BigDecimal.valueOf(4);
|
||||
BigDecimal accessLevel = BigDecimal.valueOf(7);
|
||||
|
||||
/** Load Meta Data */
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PostIt
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_PostIt
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Preference
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Preference
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PrintColor
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_PrintColor
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PrintFont
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_PrintFont
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PrintForm
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_PrintForm
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PrintFormat
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_PrintFormat
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PrintFormatItem
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_PrintFormatItem
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PrintGraph
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_PrintGraph
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PrintLabel
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_PrintLabel
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PrintLabelLine
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_PrintLabelLine
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PrintPaper
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_PrintPaper
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PrintTableFormat
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_PrintTableFormat
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Private_Access
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Private_Access
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Process
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Process
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Process_Access
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Process_Access
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Process_Para
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Process_Para
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_RecentItem
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_RecentItem
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Record_Access
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Record_Access
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Ref_List
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Ref_List
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Ref_Table
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Ref_Table
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Reference
|
||||
* @author iDempiere (generated)
|
||||
* @version Release 4.1
|
||||
* @version Release 5.1
|
||||
*/
|
||||
public interface I_AD_Reference
|
||||
{
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue