/****************************************************************************** * 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_Workflow * @author iDempiere (generated) * @version Release 11 */ public interface I_AD_Workflow { /** TableName=AD_Workflow */ public static final String Table_Name = "AD_Workflow"; /** AD_Table_ID=117 */ public static final int Table_ID = 117; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); /** AccessLevel = 6 - System - Client */ BigDecimal accessLevel = BigDecimal.valueOf(6); /** Load Meta Data */ /** Column name AccessLevel */ public static final String COLUMNNAME_AccessLevel = "AccessLevel"; /** Set Data Access Level. * Access Level required */ public void setAccessLevel (String AccessLevel); /** Get Data Access Level. * Access Level required */ public String getAccessLevel(); /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; /** Get Tenant. * Tenant for this installation. */ public int getAD_Client_ID(); /** Column name AD_CtxHelp_ID */ public static final String COLUMNNAME_AD_CtxHelp_ID = "AD_CtxHelp_ID"; /** Set Context Help */ public void setAD_CtxHelp_ID (int AD_CtxHelp_ID); /** Get Context Help */ public int getAD_CtxHelp_ID(); public org.compiere.model.I_AD_CtxHelp getAD_CtxHelp() throws RuntimeException; /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; /** Set Organization. * Organizational entity within tenant */ public void setAD_Org_ID (int AD_Org_ID); /** Get Organization. * Organizational entity within tenant */ public int getAD_Org_ID(); /** Column name AD_Table_ID */ public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID"; /** Set Table. * Database Table information */ public void setAD_Table_ID (int AD_Table_ID); /** Get Table. * Database Table information */ public int getAD_Table_ID(); public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException; /** Column name AD_WF_Node_ID */ public static final String COLUMNNAME_AD_WF_Node_ID = "AD_WF_Node_ID"; /** Set Node. * Workflow Node (activity), step or process */ public void setAD_WF_Node_ID (int AD_WF_Node_ID); /** Get Node. * Workflow Node (activity), step or process */ public int getAD_WF_Node_ID(); public org.compiere.model.I_AD_WF_Node getAD_WF_Node() throws RuntimeException; /** Column name AD_WF_Responsible_ID */ public static final String COLUMNNAME_AD_WF_Responsible_ID = "AD_WF_Responsible_ID"; /** Set Workflow Responsible. * Responsible for Workflow Execution */ public void setAD_WF_Responsible_ID (int AD_WF_Responsible_ID); /** Get Workflow Responsible. * Responsible for Workflow Execution */ public int getAD_WF_Responsible_ID(); public org.compiere.model.I_AD_WF_Responsible getAD_WF_Responsible() throws RuntimeException; /** Column name AD_Workflow_ID */ public static final String COLUMNNAME_AD_Workflow_ID = "AD_Workflow_ID"; /** Set Workflow. * Workflow or combination of tasks */ public void setAD_Workflow_ID (int AD_Workflow_ID); /** Get Workflow. * Workflow or combination of tasks */ public int getAD_Workflow_ID(); /** Column name AD_WorkflowProcessor_ID */ public static final String COLUMNNAME_AD_WorkflowProcessor_ID = "AD_WorkflowProcessor_ID"; /** Set Workflow Processor. * Workflow Processor Server */ public void setAD_WorkflowProcessor_ID (int AD_WorkflowProcessor_ID); /** Get Workflow Processor. * Workflow Processor Server */ public int getAD_WorkflowProcessor_ID(); public org.compiere.model.I_AD_WorkflowProcessor getAD_WorkflowProcessor() throws RuntimeException; /** Column name AD_Workflow_UU */ public static final String COLUMNNAME_AD_Workflow_UU = "AD_Workflow_UU"; /** Set AD_Workflow_UU */ public void setAD_Workflow_UU (String AD_Workflow_UU); /** Get AD_Workflow_UU */ public String getAD_Workflow_UU(); /** Column name Author */ public static final String COLUMNNAME_Author = "Author"; /** Set Author. * Author/Creator of the Entity */ public void setAuthor (String Author); /** Get Author. * Author/Creator of the Entity */ public String getAuthor(); /** Column name Cost */ public static final String COLUMNNAME_Cost = "Cost"; /** Set Cost. * Cost information */ public void setCost (BigDecimal Cost); /** Get Cost. * Cost information */ public BigDecimal getCost(); /** 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 DocumentNo */ public static final String COLUMNNAME_DocumentNo = "DocumentNo"; /** Set Document No. * Document sequence number of the document */ public void setDocumentNo (String DocumentNo); /** Get Document No. * Document sequence number of the document */ public String getDocumentNo(); /** Column name DocValueLogic */ public static final String COLUMNNAME_DocValueLogic = "DocValueLogic"; /** Set Document Value Logic. * Logic to determine Workflow Start - If true, a workflow process is started for the document */ public void setDocValueLogic (String DocValueLogic); /** Get Document Value Logic. * Logic to determine Workflow Start - If true, a workflow process is started for the document */ public String getDocValueLogic(); /** Column name Duration */ public static final String COLUMNNAME_Duration = "Duration"; /** Set Duration. * Normal Duration in Duration Unit */ public void setDuration (int Duration); /** Get Duration. * Normal Duration in Duration Unit */ public int getDuration(); /** Column name DurationUnit */ public static final String COLUMNNAME_DurationUnit = "DurationUnit"; /** Set Duration Unit. * Unit of Duration */ public void setDurationUnit (String DurationUnit); /** Get Duration Unit. * Unit of Duration */ public String getDurationUnit(); /** Column name EntityType */ public static final String COLUMNNAME_EntityType = "EntityType"; /** Set Entity Type. * Dictionary Entity Type; Determines ownership and synchronization */ public void setEntityType (String EntityType); /** Get Entity Type. * Dictionary Entity Type; Determines ownership and synchronization */ public String getEntityType(); /** Column name Help */ public static final String COLUMNNAME_Help = "Help"; /** Set Comment/Help. * Comment or Hint */ public void setHelp (String Help); /** Get Comment/Help. * Comment or Hint */ public String getHelp(); /** 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 IsBetaFunctionality */ public static final String COLUMNNAME_IsBetaFunctionality = "IsBetaFunctionality"; /** Set Beta Functionality. * This functionality is considered Beta */ public void setIsBetaFunctionality (boolean IsBetaFunctionality); /** Get Beta Functionality. * This functionality is considered Beta */ public boolean isBetaFunctionality(); /** Column name IsDefault */ public static final String COLUMNNAME_IsDefault = "IsDefault"; /** Set Default. * Default value */ public void setIsDefault (boolean IsDefault); /** Get Default. * Default value */ public boolean isDefault(); /** Column name IsValid */ public static final String COLUMNNAME_IsValid = "IsValid"; /** Set Valid. * Element is valid */ public void setIsValid (boolean IsValid); /** Get Valid. * Element is valid */ public boolean isValid(); /** Column name Limit */ public static final String COLUMNNAME_Limit = "Limit"; /** Set Duration Limit. * Maximum Duration in Duration Unit */ public void setLimit (int Limit); /** Get Duration Limit. * Maximum Duration in Duration Unit */ public int getLimit(); /** Column name MovingTime */ public static final String COLUMNNAME_MovingTime = "MovingTime"; /** Set Moving Time */ public void setMovingTime (int MovingTime); /** Get Moving Time */ public int getMovingTime(); /** 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 OverlapUnits */ public static final String COLUMNNAME_OverlapUnits = "OverlapUnits"; /** Set Overlap Units. * Overlap Units are number of units that must be completed before they are moved the next activity */ public void setOverlapUnits (BigDecimal OverlapUnits); /** Get Overlap Units. * Overlap Units are number of units that must be completed before they are moved the next activity */ public BigDecimal getOverlapUnits(); /** Column name Priority */ public static final String COLUMNNAME_Priority = "Priority"; /** Set Priority. * Indicates if this request is of a high, medium or low priority. */ public void setPriority (int Priority); /** Get Priority. * Indicates if this request is of a high, medium or low priority. */ public int getPriority(); /** Column name ProcessType */ public static final String COLUMNNAME_ProcessType = "ProcessType"; /** Set Process Type */ public void setProcessType (String ProcessType); /** Get Process Type */ public String getProcessType(); /** Column name PublishStatus */ public static final String COLUMNNAME_PublishStatus = "PublishStatus"; /** Set Publication Status. * Status of Publication */ public void setPublishStatus (String PublishStatus); /** Get Publication Status. * Status of Publication */ public String getPublishStatus(); /** Column name QtyBatchSize */ public static final String COLUMNNAME_QtyBatchSize = "QtyBatchSize"; /** Set Qty Batch Size */ public void setQtyBatchSize (BigDecimal QtyBatchSize); /** Get Qty Batch Size */ public BigDecimal getQtyBatchSize(); /** Column name QueuingTime */ public static final String COLUMNNAME_QueuingTime = "QueuingTime"; /** Set Queuing Time. * Queue time is the time a job waits at a work center before begin handled. */ public void setQueuingTime (int QueuingTime); /** Get Queuing Time. * Queue time is the time a job waits at a work center before begin handled. */ public int getQueuingTime(); /** Column name SetupTime */ public static final String COLUMNNAME_SetupTime = "SetupTime"; /** Set Setup Time. * Setup time before starting Production */ public void setSetupTime (int SetupTime); /** Get Setup Time. * Setup time before starting Production */ public int getSetupTime(); /** Column name S_Resource_ID */ public static final String COLUMNNAME_S_Resource_ID = "S_Resource_ID"; /** Set Resource. * Resource */ public void setS_Resource_ID (int S_Resource_ID); /** Get Resource. * Resource */ public int getS_Resource_ID(); public org.compiere.model.I_S_Resource getS_Resource() throws RuntimeException; /** Column name UnitsCycles */ public static final String COLUMNNAME_UnitsCycles = "UnitsCycles"; /** Set Units by Cycles. * The Units by Cycles are defined for process type Flow Repetitive Dedicated and indicated the product to be manufactured on a production line for duration unit. */ public void setUnitsCycles (BigDecimal UnitsCycles); /** Get Units by Cycles. * The Units by Cycles are defined for process type Flow Repetitive Dedicated and indicated the product to be manufactured on a production line for duration unit. */ public BigDecimal getUnitsCycles(); /** 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 ValidateWorkflow */ public static final String COLUMNNAME_ValidateWorkflow = "ValidateWorkflow"; /** Set Validate Workflow */ public void setValidateWorkflow (String ValidateWorkflow); /** Get Validate Workflow */ public String getValidateWorkflow(); /** Column name ValidFrom */ public static final String COLUMNNAME_ValidFrom = "ValidFrom"; /** Set Valid from. * Valid from including this date (first day) */ public void setValidFrom (Timestamp ValidFrom); /** Get Valid from. * Valid from including this date (first day) */ public Timestamp getValidFrom(); /** Column name ValidTo */ public static final String COLUMNNAME_ValidTo = "ValidTo"; /** Set Valid to. * Valid to including this date (last day) */ public void setValidTo (Timestamp ValidTo); /** Get Valid to. * Valid to including this date (last day) */ public Timestamp getValidTo(); /** 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(); /** Column name Version */ public static final String COLUMNNAME_Version = "Version"; /** Set Version. * Version of the table definition */ public void setVersion (int Version); /** Get Version. * Version of the table definition */ public int getVersion(); /** Column name WaitingTime */ public static final String COLUMNNAME_WaitingTime = "WaitingTime"; /** Set Waiting Time. * Workflow Simulation Waiting time */ public void setWaitingTime (int WaitingTime); /** Get Waiting Time. * Workflow Simulation Waiting time */ public int getWaitingTime(); /** Column name WorkflowType */ public static final String COLUMNNAME_WorkflowType = "WorkflowType"; /** Set Workflow Type. * Type of Workflow */ public void setWorkflowType (String WorkflowType); /** Get Workflow Type. * Type of Workflow */ public String getWorkflowType(); /** Column name WorkingTime */ public static final String COLUMNNAME_WorkingTime = "WorkingTime"; /** Set Working Time. * Workflow Simulation Execution Time */ public void setWorkingTime (int WorkingTime); /** Get Working Time. * Workflow Simulation Execution Time */ public int getWorkingTime(); /** Column name Yield */ public static final String COLUMNNAME_Yield = "Yield"; /** Set Yield %. * The Yield is the percentage of a lot that is expected to be of acceptable wuality may fall below 100 percent */ public void setYield (int Yield); /** Get Yield %. * The Yield is the percentage of a lot that is expected to be of acceptable wuality may fall below 100 percent */ public int getYield(); }