/****************************************************************************** * 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.util.CLogger; import org.compiere.util.DB; /** * Issue User Model.
* Note: Not fully implemented and have been marked as inactive in Application Dictionary. * * @author Jorg Janke * @version $Id: MIssueUser.java,v 1.2 2006/07/30 00:54:54 jjanke Exp $ * @deprecated */ @Deprecated public class MIssueUser extends X_R_IssueUser { /** * generated serial id */ private static final long serialVersionUID = -6761335385032704707L; /** * Get/Set User for Issue * @param issue issue * @return User */ static public MIssueUser get (MIssue issue) { if (issue.getUserName() == null) return null; MIssueUser user = null; // Find Issue User String sql = "SELECT * FROM R_IssueUser WHERE UserName=?"; PreparedStatement pstmt = null; ResultSet rs = null; try { pstmt = DB.prepareStatement (sql, null); pstmt.setString (1, issue.getUserName()); rs = pstmt.executeQuery (); if (rs.next ()) user = new MIssueUser (issue.getCtx(), rs, null); } catch (Exception e) { s_log.log (Level.SEVERE, sql, e); } finally { DB.close(rs, pstmt); rs = null; pstmt = null; } // New if (user == null) { user = new MIssueUser(issue.getCtx(), 0, null); user.setUserName(issue.getUserName()); user.setAD_User_ID(); if (!user.save()) return null; } issue.setR_IssueUser_ID(user.getR_IssueUser_ID()); return user; } // MIssueUser /** Logger */ private static CLogger s_log = CLogger.getCLogger (MIssueUser.class); /** * UUID based Constructor * @param ctx Context * @param R_IssueUser_UU UUID key * @param trxName Transaction */ public MIssueUser(Properties ctx, String R_IssueUser_UU, String trxName) { super(ctx, R_IssueUser_UU, trxName); } /** * Standard Constructor * @param ctx context * @param R_IssueUser_ID id * @param trxName trx */ public MIssueUser (Properties ctx, int R_IssueUser_ID, String trxName) { super (ctx, R_IssueUser_ID, trxName); } // MIssueUser /** * Load Constructor * @param ctx context * @param rs result set * @param trxName trx */ public MIssueUser (Properties ctx, ResultSet rs, String trxName) { super (ctx, rs, trxName); } // MIssueUser /** * Set AD_User_ID */ public void setAD_User_ID () { int AD_User_ID = DB.getSQLValue(null, "SELECT AD_User_ID FROM AD_User WHERE EMail=?", getUserName()); if (AD_User_ID != 0) super.setAD_User_ID (AD_User_ID); } // setAD_User_ID /** * String Representation * @return info */ @Override public String toString () { StringBuilder sb = new StringBuilder ("MIssueUser["); sb.append (get_ID()) .append ("-").append(getUserName()) .append(",AD_User_ID=").append(getAD_User_ID()) .append ("]"); return sb.toString (); } // toString } // MIssueUser