/****************************************************************************** * 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 C_JobAssignment * @author iDempiere (generated) * @version Release 12 */ public interface I_C_JobAssignment { /** TableName=C_JobAssignment */ public static final String Table_Name = "C_JobAssignment"; /** AD_Table_ID=791 */ public static final int Table_ID = 791; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); /** AccessLevel = 2 - Client */ BigDecimal accessLevel = BigDecimal.valueOf(2); /** Load Meta Data */ /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; /** Get Tenant. * Tenant for this installation. */ public int getAD_Client_ID(); /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; /** Set Organization. * Organizational entity within tenant */ public void setAD_Org_ID (int AD_Org_ID); /** Get Organization. * Organizational entity within tenant */ public int getAD_Org_ID(); /** Column name AD_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 */ public void setAD_User_ID (int AD_User_ID); /** Get User/Contact. * User within the system - Internal or Business Partner Contact */ public int getAD_User_ID(); public org.compiere.model.I_AD_User getAD_User() throws RuntimeException; /** Column name C_JobAssignment_ID */ public static final String COLUMNNAME_C_JobAssignment_ID = "C_JobAssignment_ID"; /** Set Position Assignment. * Assignment of Employee (User) to Job Position */ public void setC_JobAssignment_ID (int C_JobAssignment_ID); /** Get Position Assignment. * Assignment of Employee (User) to Job Position */ public int getC_JobAssignment_ID(); /** Column name C_JobAssignment_UU */ public static final String COLUMNNAME_C_JobAssignment_UU = "C_JobAssignment_UU"; /** Set C_JobAssignment_UU */ public void setC_JobAssignment_UU (String C_JobAssignment_UU); /** Get C_JobAssignment_UU */ public String getC_JobAssignment_UU(); /** Column name C_Job_ID */ public static final String COLUMNNAME_C_Job_ID = "C_Job_ID"; /** Set Position. * Job Position */ public void setC_Job_ID (int C_Job_ID); /** Get Position. * Job Position */ public int getC_Job_ID(); public org.compiere.model.I_C_Job getC_Job() throws RuntimeException; /** Column name Created */ public static final String COLUMNNAME_Created = "Created"; /** Get Created. * Date this record was created */ public Timestamp getCreated(); /** Column name CreatedBy */ public static final String COLUMNNAME_CreatedBy = "CreatedBy"; /** Get Created By. * User who created this records */ public int getCreatedBy(); /** Column name 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 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 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(); }