/****************************************************************************** * 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.util.Properties; /** Generated Model for C_OnlineTrxHistory * @author iDempiere (generated) * @version Release 11 - $Id$ */ @org.adempiere.base.Model(table="C_OnlineTrxHistory") public class X_C_OnlineTrxHistory extends PO implements I_C_OnlineTrxHistory, I_Persistent { /** * */ private static final long serialVersionUID = 20231222L; /** Standard Constructor */ public X_C_OnlineTrxHistory (Properties ctx, int C_OnlineTrxHistory_ID, String trxName) { super (ctx, C_OnlineTrxHistory_ID, trxName); /** if (C_OnlineTrxHistory_ID == 0) { setAD_Table_ID (0); setC_OnlineTrxHistory_ID (0); setIsError (false); // N setProcessed (false); // N setRecord_ID (0); } */ } /** Standard Constructor */ public X_C_OnlineTrxHistory (Properties ctx, int C_OnlineTrxHistory_ID, String trxName, String ... virtualColumns) { super (ctx, C_OnlineTrxHistory_ID, trxName, virtualColumns); /** if (C_OnlineTrxHistory_ID == 0) { setAD_Table_ID (0); setC_OnlineTrxHistory_ID (0); setIsError (false); // N setProcessed (false); // N setRecord_ID (0); } */ } /** Standard Constructor */ public X_C_OnlineTrxHistory (Properties ctx, String C_OnlineTrxHistory_UU, String trxName) { super (ctx, C_OnlineTrxHistory_UU, trxName); /** if (C_OnlineTrxHistory_UU == null) { setAD_Table_ID (0); setC_OnlineTrxHistory_ID (0); setIsError (false); // N setProcessed (false); // N setRecord_ID (0); } */ } /** Standard Constructor */ public X_C_OnlineTrxHistory (Properties ctx, String C_OnlineTrxHistory_UU, String trxName, String ... virtualColumns) { super (ctx, C_OnlineTrxHistory_UU, trxName, virtualColumns); /** if (C_OnlineTrxHistory_UU == null) { setAD_Table_ID (0); setC_OnlineTrxHistory_ID (0); setIsError (false); // N setProcessed (false); // N setRecord_ID (0); } */ } /** Load Constructor */ public X_C_OnlineTrxHistory (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_OnlineTrxHistory[") .append(get_ID()).append("]"); return sb.toString(); } public org.compiere.model.I_AD_Table getAD_Table() throws RuntimeException { return (org.compiere.model.I_AD_Table)MTable.get(getCtx(), org.compiere.model.I_AD_Table.Table_ID) .getPO(getAD_Table_ID(), get_TrxName()); } /** Set Table. @param AD_Table_ID Database Table information */ public void setAD_Table_ID (int AD_Table_ID) { if (AD_Table_ID < 1) set_Value (COLUMNNAME_AD_Table_ID, null); else set_Value (COLUMNNAME_AD_Table_ID, Integer.valueOf(AD_Table_ID)); } /** Get Table. @return Database Table information */ public int getAD_Table_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_AD_Table_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Online Transaction History. @param C_OnlineTrxHistory_ID Online Transaction History */ public void setC_OnlineTrxHistory_ID (int C_OnlineTrxHistory_ID) { if (C_OnlineTrxHistory_ID < 1) set_ValueNoCheck (COLUMNNAME_C_OnlineTrxHistory_ID, null); else set_ValueNoCheck (COLUMNNAME_C_OnlineTrxHistory_ID, Integer.valueOf(C_OnlineTrxHistory_ID)); } /** Get Online Transaction History. @return Online Transaction History */ public int getC_OnlineTrxHistory_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_OnlineTrxHistory_ID); if (ii == null) return 0; return ii.intValue(); } /** Set C_OnlineTrxHistory_UU. @param C_OnlineTrxHistory_UU C_OnlineTrxHistory_UU */ public void setC_OnlineTrxHistory_UU (String C_OnlineTrxHistory_UU) { set_Value (COLUMNNAME_C_OnlineTrxHistory_UU, C_OnlineTrxHistory_UU); } /** Get C_OnlineTrxHistory_UU. @return C_OnlineTrxHistory_UU */ public String getC_OnlineTrxHistory_UU() { return (String)get_Value(COLUMNNAME_C_OnlineTrxHistory_UU); } /** Set Error. @param IsError An Error occurred in the execution */ public void setIsError (boolean IsError) { set_Value (COLUMNNAME_IsError, Boolean.valueOf(IsError)); } /** Get Error. @return An Error occurred in the execution */ public boolean isError() { Object oo = get_Value(COLUMNNAME_IsError); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Processed. @param Processed The document has been processed */ public void setProcessed (boolean Processed) { set_Value (COLUMNNAME_Processed, Boolean.valueOf(Processed)); } /** Get Processed. @return The document has been processed */ public boolean isProcessed() { Object oo = get_Value(COLUMNNAME_Processed); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Record ID. @param Record_ID Direct internal record ID */ public void setRecord_ID (int Record_ID) { if (Record_ID < 0) set_Value (COLUMNNAME_Record_ID, null); else set_Value (COLUMNNAME_Record_ID, Integer.valueOf(Record_ID)); } /** Get Record ID. @return Direct internal record ID */ public int getRecord_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_Record_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Text Message. @param TextMsg Text Message */ public void setTextMsg (String TextMsg) { set_Value (COLUMNNAME_TextMsg, TextMsg); } /** Get Text Message. @return Text Message */ public String getTextMsg() { return (String)get_Value(COLUMNNAME_TextMsg); } }