/****************************************************************************** * 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 R_IssueSystem * @author iDempiere (generated) * @version Release 11 - $Id$ */ @org.adempiere.base.Model(table="R_IssueSystem") public class X_R_IssueSystem extends PO implements I_R_IssueSystem, I_Persistent { /** * */ private static final long serialVersionUID = 20231222L; /** Standard Constructor */ public X_R_IssueSystem (Properties ctx, int R_IssueSystem_ID, String trxName) { super (ctx, R_IssueSystem_ID, trxName); /** if (R_IssueSystem_ID == 0) { setDBAddress (null); setR_IssueSystem_ID (0); setSystemStatus (null); } */ } /** Standard Constructor */ public X_R_IssueSystem (Properties ctx, int R_IssueSystem_ID, String trxName, String ... virtualColumns) { super (ctx, R_IssueSystem_ID, trxName, virtualColumns); /** if (R_IssueSystem_ID == 0) { setDBAddress (null); setR_IssueSystem_ID (0); setSystemStatus (null); } */ } /** Standard Constructor */ public X_R_IssueSystem (Properties ctx, String R_IssueSystem_UU, String trxName) { super (ctx, R_IssueSystem_UU, trxName); /** if (R_IssueSystem_UU == null) { setDBAddress (null); setR_IssueSystem_ID (0); setSystemStatus (null); } */ } /** Standard Constructor */ public X_R_IssueSystem (Properties ctx, String R_IssueSystem_UU, String trxName, String ... virtualColumns) { super (ctx, R_IssueSystem_UU, trxName, virtualColumns); /** if (R_IssueSystem_UU == null) { setDBAddress (null); setR_IssueSystem_ID (0); setSystemStatus (null); } */ } /** Load Constructor */ public X_R_IssueSystem (Properties ctx, ResultSet rs, String trxName) { super (ctx, rs, trxName); } /** AccessLevel * @return 6 - System - Client */ 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_R_IssueSystem[") .append(get_ID()).append("]"); return sb.toString(); } public org.compiere.model.I_A_Asset getA_Asset() throws RuntimeException { return (org.compiere.model.I_A_Asset)MTable.get(getCtx(), org.compiere.model.I_A_Asset.Table_ID) .getPO(getA_Asset_ID(), get_TrxName()); } /** Set Asset. @param A_Asset_ID Asset used internally or by customers */ public void setA_Asset_ID (int A_Asset_ID) { if (A_Asset_ID < 1) set_Value (COLUMNNAME_A_Asset_ID, null); else set_Value (COLUMNNAME_A_Asset_ID, Integer.valueOf(A_Asset_ID)); } /** Get Asset. @return Asset used internally or by customers */ public int getA_Asset_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_A_Asset_ID); if (ii == null) return 0; return ii.intValue(); } /** Set DB Address. @param DBAddress JDBC URL of the database server */ public void setDBAddress (String DBAddress) { set_ValueNoCheck (COLUMNNAME_DBAddress, DBAddress); } /** Get DB Address. @return JDBC URL of the database server */ public String getDBAddress() { return (String)get_Value(COLUMNNAME_DBAddress); } /** Get Record ID/ColumnName @return ID/ColumnName pair */ public KeyNamePair getKeyNamePair() { return new KeyNamePair(get_ID(), getDBAddress()); } /** Set Profile. @param ProfileInfo Information to help profiling the system for solving support issues */ public void setProfileInfo (String ProfileInfo) { set_ValueNoCheck (COLUMNNAME_ProfileInfo, ProfileInfo); } /** Get Profile. @return Information to help profiling the system for solving support issues */ public String getProfileInfo() { return (String)get_Value(COLUMNNAME_ProfileInfo); } /** Set Issue System. @param R_IssueSystem_ID System creating the issue */ public void setR_IssueSystem_ID (int R_IssueSystem_ID) { if (R_IssueSystem_ID < 1) set_ValueNoCheck (COLUMNNAME_R_IssueSystem_ID, null); else set_ValueNoCheck (COLUMNNAME_R_IssueSystem_ID, Integer.valueOf(R_IssueSystem_ID)); } /** Get Issue System. @return System creating the issue */ public int getR_IssueSystem_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_R_IssueSystem_ID); if (ii == null) return 0; return ii.intValue(); } /** Set R_IssueSystem_UU. @param R_IssueSystem_UU R_IssueSystem_UU */ public void setR_IssueSystem_UU (String R_IssueSystem_UU) { set_Value (COLUMNNAME_R_IssueSystem_UU, R_IssueSystem_UU); } /** Get R_IssueSystem_UU. @return R_IssueSystem_UU */ public String getR_IssueSystem_UU() { return (String)get_Value(COLUMNNAME_R_IssueSystem_UU); } /** Set Statistics. @param StatisticsInfo Information to help profiling the system for solving support issues */ public void setStatisticsInfo (String StatisticsInfo) { set_ValueNoCheck (COLUMNNAME_StatisticsInfo, StatisticsInfo); } /** Get Statistics. @return Information to help profiling the system for solving support issues */ public String getStatisticsInfo() { return (String)get_Value(COLUMNNAME_StatisticsInfo); } /** SystemStatus AD_Reference_ID=374 */ public static final int SYSTEMSTATUS_AD_Reference_ID=374; /** Evaluation = E */ public static final String SYSTEMSTATUS_Evaluation = "E"; /** Implementation = I */ public static final String SYSTEMSTATUS_Implementation = "I"; /** Production = P */ public static final String SYSTEMSTATUS_Production = "P"; /** Set System Status. @param SystemStatus Status of the system - Support priority depends on system status */ public void setSystemStatus (String SystemStatus) { set_Value (COLUMNNAME_SystemStatus, SystemStatus); } /** Get System Status. @return Status of the system - Support priority depends on system status */ public String getSystemStatus() { return (String)get_Value(COLUMNNAME_SystemStatus); } }