/****************************************************************************** * 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.PreparedStatement; import java.sql.ResultSet; import java.util.Properties; import java.util.logging.Level; import org.compiere.Adempiere; import org.compiere.util.CacheMgt; import org.compiere.util.DB; import org.compiere.util.Msg; /** * Table access model * @author Jorg Janke * @version $Id: MTableAccess.java,v 1.3 2006/07/30 00:58:38 jjanke Exp $ */ public class MTableAccess extends X_AD_Table_Access { /** * */ private static final long serialVersionUID = -4075182397260458949L; /** * UUID based Constructor * @param ctx Context * @param AD_Table_Access_UU UUID key * @param trxName Transaction */ public MTableAccess(Properties ctx, String AD_Table_Access_UU, String trxName) { super(ctx, AD_Table_Access_UU, trxName); } /** * @param ctx context * @param ignored ignored * @param trxName transaction */ public MTableAccess (Properties ctx, int ignored, String trxName) { super(ctx, 0, trxName); if (ignored != 0) throw new IllegalArgumentException("Multi-Key"); } // MTableAccess /** * Load Constructor * @param ctx context * @param rs result set * @param trxName transaction */ public MTableAccess(Properties ctx, ResultSet rs, String trxName) { super(ctx, rs, trxName); } // MTableAccess /** * String Representation * @return info */ @Override public String toString() { StringBuilder sb = new StringBuilder("MTableAccess["); sb.append("AD_Role_ID=").append(getAD_Role_ID()) .append(",AD_Table_ID=").append(getAD_Table_ID()) .append(",Exclude=").append(isExclude()) .append(",Type=").append(getAccessTypeRule()); if (ACCESSTYPERULE_Accessing.equals(getAccessTypeRule())) sb.append("-ReadOnly=").append(isReadOnly()); else if (ACCESSTYPERULE_Exporting.equals(getAccessTypeRule())) sb.append("-CanExport=").append(!isExclude()); else if (ACCESSTYPERULE_Reporting.equals(getAccessTypeRule())) sb.append("-CanReport=").append(!isExclude()); sb.append("]"); return sb.toString(); } // toString /** * Extended String Representation * @param ctx context * @return extended info */ public String toStringX (Properties ctx) { String in = Msg.getMsg(ctx, "Include"); String ex = Msg.getMsg(ctx, "Exclude"); StringBuilder sb = new StringBuilder(); sb.append(Msg.translate(ctx, "AD_Table_ID")) .append("=").append(getTableName(ctx)); if (ACCESSTYPERULE_Accessing.equals(getAccessTypeRule())) sb.append(" - ").append(Msg.translate(ctx, "IsReadOnly")).append("=").append(isReadOnly()); else if (ACCESSTYPERULE_Exporting.equals(getAccessTypeRule())) sb.append(" - ").append(Msg.translate(ctx, "CanExport")).append("=").append(!isExclude()); else if (ACCESSTYPERULE_Reporting.equals(getAccessTypeRule())) sb.append(" - ").append(Msg.translate(ctx, "CanReport")).append("=").append(!isExclude()); sb.append(" - ").append(isExclude() ? ex : in); return sb.toString(); } // toStringX /** TableName */ private String m_tableName; /** * Get Table Name * @param ctx context * @return table name */ public String getTableName (Properties ctx) { if (m_tableName == null) { String sql = "SELECT TableName FROM AD_Table WHERE AD_Table_ID=?"; PreparedStatement pstmt = null; ResultSet rs = null; try { pstmt = DB.prepareStatement(sql, get_TrxName()); pstmt.setInt(1, getAD_Table_ID()); rs = pstmt.executeQuery(); if (rs.next()) m_tableName = rs.getString(1); } catch (Exception e) { log.log(Level.SEVERE, "getTableName", e); } finally { DB.close(rs, pstmt); rs = null; pstmt = null; } // Get Clear Text String realName = Msg.translate(ctx, m_tableName + "_ID"); if (!realName.equals(m_tableName + "_ID")) m_tableName = realName; } return m_tableName; } // getTableName /** * After Save * @param newRecord new * @param success success * @return success */ @Override protected boolean afterSave(boolean newRecord, boolean success) { if (success) Adempiere.getThreadPoolExecutor().submit(() -> CacheMgt.get().reset(MRole.Table_Name, getAD_Role_ID())); return success; } // afterSave /** * After Delete * @param success success * @return success */ @Override protected boolean afterDelete(boolean success) { if (success) Adempiere.getThreadPoolExecutor().submit(() -> CacheMgt.get().reset(MRole.Table_Name, getAD_Role_ID())); return success; } } // MTableAccess