/****************************************************************************** * Product: Adempiere ERP & CRM Smart Business Solution * * Copyright (C) 1999-2006 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 * *****************************************************************************/ package org.compiere.model; import java.sql.ResultSet; import java.util.Properties; import org.compiere.util.Env; import org.idempiere.cache.ImmutableIntPOCache; import org.idempiere.cache.ImmutablePOSupport; /** * Request Group Model * @author Jorg Janke * @version $Id: MGroup.java,v 1.2 2006/07/30 00:51:05 jjanke Exp $ */ public class MGroup extends X_R_Group implements ImmutablePOSupport { /** * generated serial id */ private static final long serialVersionUID = 9013217403211341916L; /** * Get MGroup from Cache (immutable) * @param R_Group_ID id * @return MGroup */ public static MGroup get (int R_Group_ID) { return get(Env.getCtx(), R_Group_ID); } /** * Get MGroup from Cache (immutable) * @param ctx context * @param R_Group_ID id * @return Immutable instance of MGroup */ public static MGroup get (Properties ctx, int R_Group_ID) { Integer key = Integer.valueOf(R_Group_ID); MGroup retValue = s_cache.get (ctx, key, e -> new MGroup(ctx, e)); if (retValue != null) return retValue; retValue = new MGroup (ctx, R_Group_ID, (String)null); if (retValue.get_ID () == R_Group_ID) { s_cache.put (key, retValue, e -> new MGroup(Env.getCtx(), e)); return retValue; } return null; } // get /** * Get updateable copy of MGroup from cache * @param ctx * @param R_Group_ID * @param trxName * @return MGroup */ public static MGroup getCopy(Properties ctx, int R_Group_ID, String trxName) { MGroup grp = get(ctx, R_Group_ID); if (grp != null) grp = new MGroup(ctx, grp, trxName); return grp; } /** Cache */ private static ImmutableIntPOCache s_cache = new ImmutableIntPOCache(Table_Name, 20); /** * UUID based Constructor * @param ctx Context * @param R_Group_UU UUID key * @param trxName Transaction */ public MGroup(Properties ctx, String R_Group_UU, String trxName) { super(ctx, R_Group_UU, trxName); } /** * Standard Constructor * @param ctx context * @param R_Group_ID group * @param trxName trx */ public MGroup (Properties ctx, int R_Group_ID, String trxName) { super (ctx, R_Group_ID, trxName); } // MGroup /** * Load Constructor * @param ctx context * @param rs result set * @param trxName trx */ public MGroup (Properties ctx, ResultSet rs, String trxName) { super (ctx, rs, trxName); } // MGroup /** * Copy constructor * @param copy */ public MGroup(MGroup copy) { this(Env.getCtx(), copy); } /** * Copy constructor * @param ctx * @param copy */ public MGroup(Properties ctx, MGroup copy) { this(ctx, copy, (String) null); } /** * Copy constructor * @param ctx * @param copy * @param trxName */ public MGroup(Properties ctx, MGroup copy, String trxName) { this(ctx, 0, trxName); copyPO(copy); } @Override public MGroup markImmutable() { if (is_Immutable()) return this; makeImmutable(); return this; } } // MGroup