/*********************************************************************** * This file is part of iDempiere ERP Open Source * * http://www.idempiere.org * * * * Copyright (C) Contributors * * * * This program is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License * * as published by the Free Software Foundation; either version 2 * * of the License, or (at your option) any later version. * * * * 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., 51 Franklin Street, Fifth Floor, Boston, * * MA 02110-1301, USA. * * * * Contributors: * * - Nicolas Micoud (TGI) * * - Alan Lescano * * - Norbert Bede * **********************************************************************/ package org.compiere.model; import java.sql.ResultSet; import java.util.Arrays; import java.util.List; import java.util.Properties; import org.compiere.util.CCache; import org.compiere.util.Env; import org.idempiere.cache.ImmutableIntPOCache; import org.idempiere.cache.ImmutablePOSupport; /** * Label Category Model */ public class MLabelCategory extends X_AD_LabelCategory implements ImmutablePOSupport { private static final long serialVersionUID = 1413261690113516220L; /** Cache */ private static ImmutableIntPOCache s_cache = new ImmutableIntPOCache(Table_Name, 5); /** Cache of Client */ private static CCache s_cacheAll = new CCache(Table_Name, Table_Name+"_Of_Client", 5); /** * UUID based Constructor * @param ctx Context * @param AD_LabelCategory_UU UUID key * @param trxName Transaction */ public MLabelCategory(Properties ctx, String AD_LabelCategory_UU, String trxName) { super(ctx, AD_LabelCategory_UU, trxName); } /** * Standard Constructor * @param ctx context * @param AD_LabelCategory_ID id * @param trxName transaction */ public MLabelCategory(Properties ctx, int AD_LabelCategory_ID, String trxName) { super(ctx, AD_LabelCategory_ID, trxName); } /** * Load Constructor * @param ctx context * @param rs result set * @param trxName transaction */ public MLabelCategory(Properties ctx, ResultSet rs, String trxName) { super(ctx, rs, trxName); } /** * Get All Label Categories (for System and current Client) * @param ctx context * @return MLabelCategory array */ public static MLabelCategory[] getAll(Properties ctx) { int clientID = Env.getAD_Client_ID(ctx); MLabelCategory[] retValue = (MLabelCategory[])s_cacheAll.get(clientID); if (retValue != null) { if (ctx == Env.getCtx()) return retValue; else return Arrays.stream(retValue).map(e -> {return new MLabelCategory(ctx, e).markImmutable();}).toArray(MLabelCategory[]::new); } List list = new Query(ctx, Table_Name, "AD_Client_ID IN (0, ?)", null) .setParameters(clientID) .setOrderBy("AD_Client_ID DESC, AD_LabelCategory_ID") .setOnlyActiveRecords(true) .list(); for (MLabelCategory cat : list) s_cache.put(cat.get_ID(), cat, e -> new MLabelCategory(Env.getCtx(), e)); retValue = list.toArray(new MLabelCategory[list.size()]); if (ctx == Env.getCtx()) s_cacheAll.put(clientID, retValue); else s_cacheAll.put(clientID, Arrays.stream(retValue).map(e -> {return new MLabelCategory(Env.getCtx(), e);}).toArray(MLabelCategory[]::new)); return retValue; } /** * Copy Constructor * @param copy */ public MLabelCategory(MLabelCategory copy) { this(Env.getCtx(), copy); } /** * Copy Constructor * @param ctx * @param copy */ public MLabelCategory(Properties ctx, MLabelCategory copy) { this(ctx, copy, (String) null); } /** * Copy Constructor * @param ctx * @param copy * @param trxName */ public MLabelCategory(Properties ctx, MLabelCategory copy, String trxName) { this(ctx, 0, trxName); copyPO(copy); } @Override public MLabelCategory markImmutable() { if (is_Immutable()) return this; makeImmutable(); return this; } } // MLabelCategory