/****************************************************************************** * 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_Status * @author iDempiere (generated) * @version Release 11 - $Id$ */ @org.adempiere.base.Model(table="R_Status") public class X_R_Status extends PO implements I_R_Status, I_Persistent { /** * */ private static final long serialVersionUID = 20231222L; /** Standard Constructor */ public X_R_Status (Properties ctx, int R_Status_ID, String trxName) { super (ctx, R_Status_ID, trxName); /** if (R_Status_ID == 0) { setIsClosed (false); // N setIsDefault (false); setIsFinalClose (false); // N setIsOpen (false); setIsWebCanUpdate (false); setName (null); setR_StatusCategory_ID (0); setR_Status_ID (0); setSeqNo (0); setValue (null); } */ } /** Standard Constructor */ public X_R_Status (Properties ctx, int R_Status_ID, String trxName, String ... virtualColumns) { super (ctx, R_Status_ID, trxName, virtualColumns); /** if (R_Status_ID == 0) { setIsClosed (false); // N setIsDefault (false); setIsFinalClose (false); // N setIsOpen (false); setIsWebCanUpdate (false); setName (null); setR_StatusCategory_ID (0); setR_Status_ID (0); setSeqNo (0); setValue (null); } */ } /** Standard Constructor */ public X_R_Status (Properties ctx, String R_Status_UU, String trxName) { super (ctx, R_Status_UU, trxName); /** if (R_Status_UU == null) { setIsClosed (false); // N setIsDefault (false); setIsFinalClose (false); // N setIsOpen (false); setIsWebCanUpdate (false); setName (null); setR_StatusCategory_ID (0); setR_Status_ID (0); setSeqNo (0); setValue (null); } */ } /** Standard Constructor */ public X_R_Status (Properties ctx, String R_Status_UU, String trxName, String ... virtualColumns) { super (ctx, R_Status_UU, trxName, virtualColumns); /** if (R_Status_UU == null) { setIsClosed (false); // N setIsDefault (false); setIsFinalClose (false); // N setIsOpen (false); setIsWebCanUpdate (false); setName (null); setR_StatusCategory_ID (0); setR_Status_ID (0); setSeqNo (0); setValue (null); } */ } /** Load Constructor */ public X_R_Status (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_Status[") .append(get_ID()).append(",Name=").append(getName()).append("]"); return sb.toString(); } /** 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 Closed Status. @param IsClosed The status is closed */ public void setIsClosed (boolean IsClosed) { set_Value (COLUMNNAME_IsClosed, Boolean.valueOf(IsClosed)); } /** Get Closed Status. @return The status is closed */ public boolean isClosed() { Object oo = get_Value(COLUMNNAME_IsClosed); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Default. @param IsDefault Default value */ public void setIsDefault (boolean IsDefault) { set_Value (COLUMNNAME_IsDefault, Boolean.valueOf(IsDefault)); } /** Get Default. @return Default value */ public boolean isDefault() { Object oo = get_Value(COLUMNNAME_IsDefault); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Final Close. @param IsFinalClose Entries with Final Close cannot be re-opened */ public void setIsFinalClose (boolean IsFinalClose) { set_Value (COLUMNNAME_IsFinalClose, Boolean.valueOf(IsFinalClose)); } /** Get Final Close. @return Entries with Final Close cannot be re-opened */ public boolean isFinalClose() { Object oo = get_Value(COLUMNNAME_IsFinalClose); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Open Status. @param IsOpen The status is closed */ public void setIsOpen (boolean IsOpen) { set_Value (COLUMNNAME_IsOpen, Boolean.valueOf(IsOpen)); } /** Get Open Status. @return The status is closed */ public boolean isOpen() { Object oo = get_Value(COLUMNNAME_IsOpen); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Web Can Update. @param IsWebCanUpdate Entry can be updated from the Web */ public void setIsWebCanUpdate (boolean IsWebCanUpdate) { set_Value (COLUMNNAME_IsWebCanUpdate, Boolean.valueOf(IsWebCanUpdate)); } /** Get Web Can Update. @return Entry can be updated from the Web */ public boolean isWebCanUpdate() { Object oo = get_Value(COLUMNNAME_IsWebCanUpdate); 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); } public org.compiere.model.I_R_Status getNext_Status() throws RuntimeException { return (org.compiere.model.I_R_Status)MTable.get(getCtx(), org.compiere.model.I_R_Status.Table_ID) .getPO(getNext_Status_ID(), get_TrxName()); } /** Set Next Status. @param Next_Status_ID Move to next status automatically after timeout */ public void setNext_Status_ID (int Next_Status_ID) { if (Next_Status_ID < 1) set_Value (COLUMNNAME_Next_Status_ID, null); else set_Value (COLUMNNAME_Next_Status_ID, Integer.valueOf(Next_Status_ID)); } /** Get Next Status. @return Move to next status automatically after timeout */ public int getNext_Status_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_Next_Status_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_R_StatusCategory getR_StatusCategory() throws RuntimeException { return (org.compiere.model.I_R_StatusCategory)MTable.get(getCtx(), org.compiere.model.I_R_StatusCategory.Table_ID) .getPO(getR_StatusCategory_ID(), get_TrxName()); } /** Set Status Category. @param R_StatusCategory_ID Request Status Category */ public void setR_StatusCategory_ID (int R_StatusCategory_ID) { if (R_StatusCategory_ID < 1) set_Value (COLUMNNAME_R_StatusCategory_ID, null); else set_Value (COLUMNNAME_R_StatusCategory_ID, Integer.valueOf(R_StatusCategory_ID)); } /** Get Status Category. @return Request Status Category */ public int getR_StatusCategory_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_R_StatusCategory_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Status. @param R_Status_ID Request Status */ public void setR_Status_ID (int R_Status_ID) { if (R_Status_ID < 1) set_ValueNoCheck (COLUMNNAME_R_Status_ID, null); else set_ValueNoCheck (COLUMNNAME_R_Status_ID, Integer.valueOf(R_Status_ID)); } /** Get Status. @return Request Status */ public int getR_Status_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_R_Status_ID); if (ii == null) return 0; return ii.intValue(); } /** Set R_Status_UU. @param R_Status_UU R_Status_UU */ public void setR_Status_UU (String R_Status_UU) { set_Value (COLUMNNAME_R_Status_UU, R_Status_UU); } /** Get R_Status_UU. @return R_Status_UU */ public String getR_Status_UU() { return (String)get_Value(COLUMNNAME_R_Status_UU); } /** Set Sequence. @param SeqNo Method of ordering records; lowest number comes first */ public void setSeqNo (int SeqNo) { set_Value (COLUMNNAME_SeqNo, Integer.valueOf(SeqNo)); } /** Get Sequence. @return Method of ordering records; lowest number comes first */ public int getSeqNo() { Integer ii = (Integer)get_Value(COLUMNNAME_SeqNo); if (ii == null) return 0; return ii.intValue(); } /** Get Record ID/ColumnName @return ID/ColumnName pair */ public KeyNamePair getKeyNamePair() { return new KeyNamePair(get_ID(), String.valueOf(getSeqNo())); } /** Set Timeout in Days. @param TimeoutDays Timeout in Days to change Status automatically */ public void setTimeoutDays (int TimeoutDays) { set_Value (COLUMNNAME_TimeoutDays, Integer.valueOf(TimeoutDays)); } /** Get Timeout in Days. @return Timeout in Days to change Status automatically */ public int getTimeoutDays() { Integer ii = (Integer)get_Value(COLUMNNAME_TimeoutDays); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_R_Status getUpdate_Status() throws RuntimeException { return (org.compiere.model.I_R_Status)MTable.get(getCtx(), org.compiere.model.I_R_Status.Table_ID) .getPO(getUpdate_Status_ID(), get_TrxName()); } /** Set Update Status. @param Update_Status_ID Automatically change the status after entry from web */ public void setUpdate_Status_ID (int Update_Status_ID) { if (Update_Status_ID < 1) set_Value (COLUMNNAME_Update_Status_ID, null); else set_Value (COLUMNNAME_Update_Status_ID, Integer.valueOf(Update_Status_ID)); } /** Get Update Status. @return Automatically change the status after entry from web */ public int getUpdate_Status_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_Update_Status_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Search Key. @param Value Search key for the record in the format required - must be unique */ public void setValue (String Value) { set_Value (COLUMNNAME_Value, Value); } /** Get Search Key. @return Search key for the record in the format required - must be unique */ public String getValue() { return (String)get_Value(COLUMNNAME_Value); } }