/****************************************************************************** * 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; import org.compiere.util.KeyNamePair; /** Generated Model for AD_Archive * @author iDempiere (generated) * @version Release 11 - $Id$ */ @org.adempiere.base.Model(table="AD_Archive") public class X_AD_Archive extends PO implements I_AD_Archive, I_Persistent { /** * */ private static final long serialVersionUID = 20231222L; /** Standard Constructor */ public X_AD_Archive (Properties ctx, int AD_Archive_ID, String trxName) { super (ctx, AD_Archive_ID, trxName); /** if (AD_Archive_ID == 0) { setAD_Archive_ID (0); setBinaryData (null); setIsReport (false); setName (null); } */ } /** Standard Constructor */ public X_AD_Archive (Properties ctx, int AD_Archive_ID, String trxName, String ... virtualColumns) { super (ctx, AD_Archive_ID, trxName, virtualColumns); /** if (AD_Archive_ID == 0) { setAD_Archive_ID (0); setBinaryData (null); setIsReport (false); setName (null); } */ } /** Standard Constructor */ public X_AD_Archive (Properties ctx, String AD_Archive_UU, String trxName) { super (ctx, AD_Archive_UU, trxName); /** if (AD_Archive_UU == null) { setAD_Archive_ID (0); setBinaryData (null); setIsReport (false); setName (null); } */ } /** Standard Constructor */ public X_AD_Archive (Properties ctx, String AD_Archive_UU, String trxName, String ... virtualColumns) { super (ctx, AD_Archive_UU, trxName, virtualColumns); /** if (AD_Archive_UU == null) { setAD_Archive_ID (0); setBinaryData (null); setIsReport (false); setName (null); } */ } /** Load Constructor */ public X_AD_Archive (Properties ctx, ResultSet rs, String trxName) { super (ctx, rs, trxName); } /** AccessLevel * @return 7 - System - 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_AD_Archive[") .append(get_ID()).append(",Name=").append(getName()).append("]"); return sb.toString(); } /** Set Archive. @param AD_Archive_ID Document and Report Archive */ public void setAD_Archive_ID (int AD_Archive_ID) { if (AD_Archive_ID < 1) set_ValueNoCheck (COLUMNNAME_AD_Archive_ID, null); else set_ValueNoCheck (COLUMNNAME_AD_Archive_ID, Integer.valueOf(AD_Archive_ID)); } /** Get Archive. @return Document and Report Archive */ public int getAD_Archive_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_AD_Archive_ID); if (ii == null) return 0; return ii.intValue(); } /** Set AD_Archive_UU. @param AD_Archive_UU AD_Archive_UU */ public void setAD_Archive_UU (String AD_Archive_UU) { set_Value (COLUMNNAME_AD_Archive_UU, AD_Archive_UU); } /** Get AD_Archive_UU. @return AD_Archive_UU */ public String getAD_Archive_UU() { return (String)get_Value(COLUMNNAME_AD_Archive_UU); } public org.compiere.model.I_AD_Process getAD_Process() throws RuntimeException { return (org.compiere.model.I_AD_Process)MTable.get(getCtx(), org.compiere.model.I_AD_Process.Table_ID) .getPO(getAD_Process_ID(), get_TrxName()); } /** Set Process. @param AD_Process_ID Process or Report */ public void setAD_Process_ID (int AD_Process_ID) { if (AD_Process_ID < 1) set_Value (COLUMNNAME_AD_Process_ID, null); else set_Value (COLUMNNAME_AD_Process_ID, Integer.valueOf(AD_Process_ID)); } /** Get Process. @return Process or Report */ public int getAD_Process_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_AD_Process_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_AD_StorageProvider getAD_StorageProvider() throws RuntimeException { return (org.compiere.model.I_AD_StorageProvider)MTable.get(getCtx(), org.compiere.model.I_AD_StorageProvider.Table_ID) .getPO(getAD_StorageProvider_ID(), get_TrxName()); } /** Set Storage Provider. @param AD_StorageProvider_ID Storage Provider */ public void setAD_StorageProvider_ID (int AD_StorageProvider_ID) { if (AD_StorageProvider_ID < 1) set_ValueNoCheck (COLUMNNAME_AD_StorageProvider_ID, null); else set_ValueNoCheck (COLUMNNAME_AD_StorageProvider_ID, Integer.valueOf(AD_StorageProvider_ID)); } /** Get Storage Provider. @return Storage Provider */ public int getAD_StorageProvider_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_AD_StorageProvider_ID); if (ii == null) return 0; return ii.intValue(); } 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 Binary Data. @param BinaryData Binary Data */ public void setBinaryData (byte[] BinaryData) { set_Value (COLUMNNAME_BinaryData, BinaryData); } /** Get Binary Data. @return Binary Data */ public byte[] getBinaryData() { return (byte[])get_Value(COLUMNNAME_BinaryData); } public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_ID) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner. @param C_BPartner_ID Identifies a Business Partner */ public void setC_BPartner_ID (int C_BPartner_ID) { if (C_BPartner_ID < 1) set_Value (COLUMNNAME_C_BPartner_ID, null); else set_Value (COLUMNNAME_C_BPartner_ID, Integer.valueOf(C_BPartner_ID)); } /** Get Business Partner. @return Identifies a Business Partner */ public int getC_BPartner_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_BPartner_ID); if (ii == null) return 0; return ii.intValue(); } /** 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 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 Report. @param IsReport Indicates a Report record */ public void setIsReport (boolean IsReport) { set_Value (COLUMNNAME_IsReport, Boolean.valueOf(IsReport)); } /** Get Report. @return Indicates a Report record */ public boolean isReport() { Object oo = get_Value(COLUMNNAME_IsReport); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** 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 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 Record UUID. @param Record_UU Record UUID */ public void setRecord_UU (String Record_UU) { set_Value (COLUMNNAME_Record_UU, Record_UU); } /** Get Record UUID. @return Record UUID */ public String getRecord_UU() { return (String)get_Value(COLUMNNAME_Record_UU); } }