/****************************************************************************** * 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_Recurring * @author iDempiere (generated) * @version Release 12 - $Id$ */ @org.adempiere.base.Model(table="C_Recurring") public class X_C_Recurring extends PO implements I_C_Recurring, I_Persistent { /** * */ private static final long serialVersionUID = 20241222L; /** Standard Constructor */ public X_C_Recurring (Properties ctx, int C_Recurring_ID, String trxName) { super (ctx, C_Recurring_ID, trxName); /** if (C_Recurring_ID == 0) { setC_Recurring_ID (0); setDateNextRun (new Timestamp( System.currentTimeMillis() )); setFrequencyType (null); // M setName (null); setRecurringType (null); setRunsMax (0); setRunsRemaining (0); } */ } /** Standard Constructor */ public X_C_Recurring (Properties ctx, int C_Recurring_ID, String trxName, String ... virtualColumns) { super (ctx, C_Recurring_ID, trxName, virtualColumns); /** if (C_Recurring_ID == 0) { setC_Recurring_ID (0); setDateNextRun (new Timestamp( System.currentTimeMillis() )); setFrequencyType (null); // M setName (null); setRecurringType (null); setRunsMax (0); setRunsRemaining (0); } */ } /** Standard Constructor */ public X_C_Recurring (Properties ctx, String C_Recurring_UU, String trxName) { super (ctx, C_Recurring_UU, trxName); /** if (C_Recurring_UU == null) { setC_Recurring_ID (0); setDateNextRun (new Timestamp( System.currentTimeMillis() )); setFrequencyType (null); // M setName (null); setRecurringType (null); setRunsMax (0); setRunsRemaining (0); } */ } /** Standard Constructor */ public X_C_Recurring (Properties ctx, String C_Recurring_UU, String trxName, String ... virtualColumns) { super (ctx, C_Recurring_UU, trxName, virtualColumns); /** if (C_Recurring_UU == null) { setC_Recurring_ID (0); setDateNextRun (new Timestamp( System.currentTimeMillis() )); setFrequencyType (null); // M setName (null); setRecurringType (null); setRunsMax (0); setRunsRemaining (0); } */ } /** Load Constructor */ public X_C_Recurring (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_Recurring[") .append(get_ID()).append(",Name=").append(getName()).append("]"); return sb.toString(); } public org.compiere.model.I_C_Invoice getC_Invoice() throws RuntimeException { return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_ID) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @param C_Invoice_ID Invoice Identifier */ public void setC_Invoice_ID (int C_Invoice_ID) { if (C_Invoice_ID < 1) set_Value (COLUMNNAME_C_Invoice_ID, null); else set_Value (COLUMNNAME_C_Invoice_ID, Integer.valueOf(C_Invoice_ID)); } /** Get Invoice. @return Invoice Identifier */ public int getC_Invoice_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_Invoice_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_ID) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @param C_Order_ID Order */ public void setC_Order_ID (int C_Order_ID) { if (C_Order_ID < 1) set_Value (COLUMNNAME_C_Order_ID, null); else set_Value (COLUMNNAME_C_Order_ID, Integer.valueOf(C_Order_ID)); } /** Get Order. @return Order */ public int getC_Order_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_Order_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException { return (org.compiere.model.I_C_Payment)MTable.get(getCtx(), org.compiere.model.I_C_Payment.Table_ID) .getPO(getC_Payment_ID(), get_TrxName()); } /** Set Payment. @param C_Payment_ID Payment identifier */ public void setC_Payment_ID (int C_Payment_ID) { if (C_Payment_ID < 1) set_Value (COLUMNNAME_C_Payment_ID, null); else set_Value (COLUMNNAME_C_Payment_ID, Integer.valueOf(C_Payment_ID)); } /** Get Payment. @return Payment identifier */ public int getC_Payment_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_Payment_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_ID) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @param C_Project_ID Financial Project */ public void setC_Project_ID (int C_Project_ID) { if (C_Project_ID < 1) set_Value (COLUMNNAME_C_Project_ID, null); else set_Value (COLUMNNAME_C_Project_ID, Integer.valueOf(C_Project_ID)); } /** Get Project. @return Financial Project */ public int getC_Project_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_Project_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_C_RecurringGroup getC_RecurringGroup() throws RuntimeException { return (org.compiere.model.I_C_RecurringGroup)MTable.get(getCtx(), org.compiere.model.I_C_RecurringGroup.Table_ID) .getPO(getC_RecurringGroup_ID(), get_TrxName()); } /** Set Recurring Group. @param C_RecurringGroup_ID Recurring Group */ public void setC_RecurringGroup_ID (int C_RecurringGroup_ID) { if (C_RecurringGroup_ID < 1) set_Value (COLUMNNAME_C_RecurringGroup_ID, null); else set_Value (COLUMNNAME_C_RecurringGroup_ID, Integer.valueOf(C_RecurringGroup_ID)); } /** Get Recurring Group. @return Recurring Group */ public int getC_RecurringGroup_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_RecurringGroup_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Recurring. @param C_Recurring_ID Recurring Document */ public void setC_Recurring_ID (int C_Recurring_ID) { if (C_Recurring_ID < 1) set_ValueNoCheck (COLUMNNAME_C_Recurring_ID, null); else set_ValueNoCheck (COLUMNNAME_C_Recurring_ID, Integer.valueOf(C_Recurring_ID)); } /** Get Recurring. @return Recurring Document */ public int getC_Recurring_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_Recurring_ID); if (ii == null) return 0; return ii.intValue(); } /** Set C_Recurring_UU. @param C_Recurring_UU C_Recurring_UU */ public void setC_Recurring_UU (String C_Recurring_UU) { set_Value (COLUMNNAME_C_Recurring_UU, C_Recurring_UU); } /** Get C_Recurring_UU. @return C_Recurring_UU */ public String getC_Recurring_UU() { return (String)get_Value(COLUMNNAME_C_Recurring_UU); } /** Set Date Last Run. @param DateLastRun Date the process was last run. */ public void setDateLastRun (Timestamp DateLastRun) { set_ValueNoCheck (COLUMNNAME_DateLastRun, DateLastRun); } /** Get Date Last Run. @return Date the process was last run. */ public Timestamp getDateLastRun() { return (Timestamp)get_Value(COLUMNNAME_DateLastRun); } /** Set Date Next Run. @param DateNextRun Date the process will run next */ public void setDateNextRun (Timestamp DateNextRun) { set_Value (COLUMNNAME_DateNextRun, DateNextRun); } /** Get Date Next Run. @return Date the process will run next */ public Timestamp getDateNextRun() { return (Timestamp)get_Value(COLUMNNAME_DateNextRun); } /** 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); } /** Set Frequency. @param Frequency Frequency of events */ public void setFrequency (int Frequency) { set_Value (COLUMNNAME_Frequency, Integer.valueOf(Frequency)); } /** Get Frequency. @return Frequency of events */ public int getFrequency() { Integer ii = (Integer)get_Value(COLUMNNAME_Frequency); if (ii == null) return 0; return ii.intValue(); } /** FrequencyType AD_Reference_ID=283 */ public static final int FREQUENCYTYPE_AD_Reference_ID=283; /** Daily = D */ public static final String FREQUENCYTYPE_Daily = "D"; /** Monthly = M */ public static final String FREQUENCYTYPE_Monthly = "M"; /** Quarterly = Q */ public static final String FREQUENCYTYPE_Quarterly = "Q"; /** Weekly = W */ public static final String FREQUENCYTYPE_Weekly = "W"; /** Set Frequency Type. @param FrequencyType Frequency of event */ public void setFrequencyType (String FrequencyType) { set_Value (COLUMNNAME_FrequencyType, FrequencyType); } /** Get Frequency Type. @return Frequency of event */ public String getFrequencyType() { return (String)get_Value(COLUMNNAME_FrequencyType); } public org.compiere.model.I_GL_JournalBatch getGL_JournalBatch() throws RuntimeException { return (org.compiere.model.I_GL_JournalBatch)MTable.get(getCtx(), org.compiere.model.I_GL_JournalBatch.Table_ID) .getPO(getGL_JournalBatch_ID(), get_TrxName()); } /** Set Journal Batch. @param GL_JournalBatch_ID General Ledger Journal Batch */ public void setGL_JournalBatch_ID (int GL_JournalBatch_ID) { if (GL_JournalBatch_ID < 1) set_Value (COLUMNNAME_GL_JournalBatch_ID, null); else set_Value (COLUMNNAME_GL_JournalBatch_ID, Integer.valueOf(GL_JournalBatch_ID)); } /** Get Journal Batch. @return General Ledger Journal Batch */ public int getGL_JournalBatch_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_GL_JournalBatch_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Comment/Help. @param Help Comment or Hint */ public void setHelp (String Help) { set_Value (COLUMNNAME_Help, Help); } /** Get Comment/Help. @return Comment or Hint */ public String getHelp() { return (String)get_Value(COLUMNNAME_Help); } /** Set Name. @param Name Alphanumeric identifier of the entity */ public void setName (String Name) { set_Value (COLUMNNAME_Name, Name); } /** Get Name. @return Alphanumeric identifier of the entity */ public String getName() { return (String)get_Value(COLUMNNAME_Name); } /** Get Record ID/ColumnName @return ID/ColumnName pair */ public KeyNamePair getKeyNamePair() { return new KeyNamePair(get_ID(), getName()); } /** Set Process Now. @param Processing Process Now */ public void setProcessing (boolean Processing) { set_Value (COLUMNNAME_Processing, Boolean.valueOf(Processing)); } /** Get Process Now. @return Process Now */ public boolean isProcessing() { Object oo = get_Value(COLUMNNAME_Processing); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** RecurringType AD_Reference_ID=282 */ public static final int RECURRINGTYPE_AD_Reference_ID=282; /** GL Journal = G */ public static final String RECURRINGTYPE_GLJournal = "G"; /** Invoice = I */ public static final String RECURRINGTYPE_Invoice = "I"; /** Project = J */ public static final String RECURRINGTYPE_Project = "J"; /** Order = O */ public static final String RECURRINGTYPE_Order = "O"; /** Payment = P */ public static final String RECURRINGTYPE_Payment = "P"; /** Set Recurring Type. @param RecurringType Type of Recurring Document */ public void setRecurringType (String RecurringType) { set_Value (COLUMNNAME_RecurringType, RecurringType); } /** Get Recurring Type. @return Type of Recurring Document */ public String getRecurringType() { return (String)get_Value(COLUMNNAME_RecurringType); } /** Set Maximum Runs. @param RunsMax Number of recurring runs */ public void setRunsMax (int RunsMax) { set_Value (COLUMNNAME_RunsMax, Integer.valueOf(RunsMax)); } /** Get Maximum Runs. @return Number of recurring runs */ public int getRunsMax() { Integer ii = (Integer)get_Value(COLUMNNAME_RunsMax); if (ii == null) return 0; return ii.intValue(); } /** Set Remaining Runs. @param RunsRemaining Number of recurring runs remaining */ public void setRunsRemaining (int RunsRemaining) { set_ValueNoCheck (COLUMNNAME_RunsRemaining, Integer.valueOf(RunsRemaining)); } /** Get Remaining Runs. @return Number of recurring runs remaining */ public int getRunsRemaining() { Integer ii = (Integer)get_Value(COLUMNNAME_RunsRemaining); if (ii == null) return 0; return ii.intValue(); } }