/****************************************************************************** * 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 * *****************************************************************************/ /** Generated Model - DO NOT CHANGE */ package org.compiere.model; import java.sql.ResultSet; import java.sql.Timestamp; import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_ContactActivity * @author iDempiere (generated) * @version Release 12 - $Id$ */ @org.adempiere.base.Model(table="C_ContactActivity") public class X_C_ContactActivity extends PO implements I_C_ContactActivity, I_Persistent { /** * */ private static final long serialVersionUID = 20241222L; /** Standard Constructor */ public X_C_ContactActivity (Properties ctx, int C_ContactActivity_ID, String trxName) { super (ctx, C_ContactActivity_ID, trxName); /** if (C_ContactActivity_ID == 0) { setC_ContactActivity_ID (0); setContactActivityType (null); setDescription (null); setStartDate (new Timestamp( System.currentTimeMillis() )); // @SQL=SELECT SYSDATE AS DefaultValue FROM DUAL } */ } /** Standard Constructor */ public X_C_ContactActivity (Properties ctx, int C_ContactActivity_ID, String trxName, String ... virtualColumns) { super (ctx, C_ContactActivity_ID, trxName, virtualColumns); /** if (C_ContactActivity_ID == 0) { setC_ContactActivity_ID (0); setContactActivityType (null); setDescription (null); setStartDate (new Timestamp( System.currentTimeMillis() )); // @SQL=SELECT SYSDATE AS DefaultValue FROM DUAL } */ } /** Standard Constructor */ public X_C_ContactActivity (Properties ctx, String C_ContactActivity_UU, String trxName) { super (ctx, C_ContactActivity_UU, trxName); /** if (C_ContactActivity_UU == null) { setC_ContactActivity_ID (0); setContactActivityType (null); setDescription (null); setStartDate (new Timestamp( System.currentTimeMillis() )); // @SQL=SELECT SYSDATE AS DefaultValue FROM DUAL } */ } /** Standard Constructor */ public X_C_ContactActivity (Properties ctx, String C_ContactActivity_UU, String trxName, String ... virtualColumns) { super (ctx, C_ContactActivity_UU, trxName, virtualColumns); /** if (C_ContactActivity_UU == null) { setC_ContactActivity_ID (0); setContactActivityType (null); setDescription (null); setStartDate (new Timestamp( System.currentTimeMillis() )); // @SQL=SELECT SYSDATE AS DefaultValue FROM DUAL } */ } /** Load Constructor */ public X_C_ContactActivity (Properties ctx, ResultSet rs, String trxName) { super (ctx, rs, trxName); } /** AccessLevel * @return 3 - Client - Org */ protected int get_AccessLevel() { return accessLevel.intValue(); } /** Load Meta Data */ protected POInfo initPO (Properties ctx) { POInfo poi = POInfo.getPOInfo (ctx, Table_ID, get_TrxName()); return poi; } public String toString() { StringBuilder sb = new StringBuilder ("X_C_ContactActivity[") .append(get_ID()).append("]"); return sb.toString(); } public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_ID) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @param AD_User_ID User within the system - Internal or Business Partner Contact */ public void setAD_User_ID (int AD_User_ID) { if (AD_User_ID < 1) set_Value (COLUMNNAME_AD_User_ID, null); else set_Value (COLUMNNAME_AD_User_ID, Integer.valueOf(AD_User_ID)); } /** Get User/Contact. @return User within the system - Internal or Business Partner Contact */ public int getAD_User_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_AD_User_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Contact Activity. @param C_ContactActivity_ID Events, tasks, communications related to a contact */ public void setC_ContactActivity_ID (int C_ContactActivity_ID) { if (C_ContactActivity_ID < 1) set_ValueNoCheck (COLUMNNAME_C_ContactActivity_ID, null); else set_ValueNoCheck (COLUMNNAME_C_ContactActivity_ID, Integer.valueOf(C_ContactActivity_ID)); } /** Get Contact Activity. @return Events, tasks, communications related to a contact */ public int getC_ContactActivity_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_ContactActivity_ID); if (ii == null) return 0; return ii.intValue(); } /** Set C_ContactActivity_UU. @param C_ContactActivity_UU C_ContactActivity_UU */ public void setC_ContactActivity_UU (String C_ContactActivity_UU) { set_Value (COLUMNNAME_C_ContactActivity_UU, C_ContactActivity_UU); } /** Get C_ContactActivity_UU. @return C_ContactActivity_UU */ public String getC_ContactActivity_UU() { return (String)get_Value(COLUMNNAME_C_ContactActivity_UU); } public org.compiere.model.I_C_Opportunity getC_Opportunity() throws RuntimeException { return (org.compiere.model.I_C_Opportunity)MTable.get(getCtx(), org.compiere.model.I_C_Opportunity.Table_ID) .getPO(getC_Opportunity_ID(), get_TrxName()); } /** Set Sales Opportunity. @param C_Opportunity_ID Sales Opportunity */ public void setC_Opportunity_ID (int C_Opportunity_ID) { if (C_Opportunity_ID < 1) set_Value (COLUMNNAME_C_Opportunity_ID, null); else set_Value (COLUMNNAME_C_Opportunity_ID, Integer.valueOf(C_Opportunity_ID)); } /** Get Sales Opportunity. @return Sales Opportunity */ public int getC_Opportunity_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_Opportunity_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Comments. @param Comments Comments or additional information */ public void setComments (String Comments) { set_Value (COLUMNNAME_Comments, Comments); } /** Get Comments. @return Comments or additional information */ public String getComments() { return (String)get_Value(COLUMNNAME_Comments); } /** ContactActivityType AD_Reference_ID=53423 */ public static final int CONTACTACTIVITYTYPE_AD_Reference_ID=53423; /** Email = EM */ public static final String CONTACTACTIVITYTYPE_Email = "EM"; /** Meeting = ME */ public static final String CONTACTACTIVITYTYPE_Meeting = "ME"; /** Phone call = PC */ public static final String CONTACTACTIVITYTYPE_PhoneCall = "PC"; /** Task = TA */ public static final String CONTACTACTIVITYTYPE_Task = "TA"; /** Set Activity Type. @param ContactActivityType Type of activity, e.g. task, email, phone call */ public void setContactActivityType (String ContactActivityType) { set_ValueNoCheck (COLUMNNAME_ContactActivityType, ContactActivityType); } /** Get Activity Type. @return Type of activity, e.g. task, email, phone call */ public String getContactActivityType() { return (String)get_Value(COLUMNNAME_ContactActivityType); } /** Set Description. @param Description Optional short description of the record */ public void setDescription (String Description) { set_Value (COLUMNNAME_Description, Description); } /** Get Description. @return Optional short description of the record */ public String getDescription() { return (String)get_Value(COLUMNNAME_Description); } /** Get Record ID/ColumnName @return ID/ColumnName pair */ public KeyNamePair getKeyNamePair() { return new KeyNamePair(get_ID(), getDescription()); } /** Set End Date. @param EndDate Last effective date (inclusive) */ public void setEndDate (Timestamp EndDate) { set_Value (COLUMNNAME_EndDate, EndDate); } /** Get End Date. @return Last effective date (inclusive) */ public Timestamp getEndDate() { return (Timestamp)get_Value(COLUMNNAME_EndDate); } /** Set Complete. @param IsComplete It is complete */ public void setIsComplete (boolean IsComplete) { set_Value (COLUMNNAME_IsComplete, Boolean.valueOf(IsComplete)); } /** Get Complete. @return It is complete */ public boolean isComplete() { Object oo = get_Value(COLUMNNAME_IsComplete); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException { return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_ID) .getPO(getSalesRep_ID(), get_TrxName()); } /** Set Sales Representative. @param SalesRep_ID Sales Representative or Company Agent */ public void setSalesRep_ID (int SalesRep_ID) { if (SalesRep_ID < 1) set_Value (COLUMNNAME_SalesRep_ID, null); else set_Value (COLUMNNAME_SalesRep_ID, Integer.valueOf(SalesRep_ID)); } /** Get Sales Representative. @return Sales Representative or Company Agent */ public int getSalesRep_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_SalesRep_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Start Date. @param StartDate First effective day (inclusive) */ public void setStartDate (Timestamp StartDate) { set_Value (COLUMNNAME_StartDate, StartDate); } /** Get Start Date. @return First effective day (inclusive) */ public Timestamp getStartDate() { return (Timestamp)get_Value(COLUMNNAME_StartDate); } }