/****************************************************************************** * 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.sql.Timestamp; import java.util.ArrayList; import java.util.Properties; import java.util.logging.Level; import org.compiere.util.DB; import org.compiere.util.Env; import org.compiere.util.Util; /** * Service Level Agreement Goals * * @author Jorg Janke * @version $Id: MSLAGoal.java,v 1.3 2006/07/30 00:51:03 jjanke Exp $ * @deprecated not fully implement, marked as inactive in application dictionary */ @Deprecated public class MSLAGoal extends X_PA_SLA_Goal { /** * */ private static final long serialVersionUID = -5165579804502911120L; /** * UUID based Constructor * @param ctx Context * @param PA_SLA_Goal_UU UUID key * @param trxName Transaction */ public MSLAGoal(Properties ctx, String PA_SLA_Goal_UU, String trxName) { super(ctx, PA_SLA_Goal_UU, trxName); if (Util.isEmpty(PA_SLA_Goal_UU)) setInitialDefaults(); } /** * Standard Constructor * @param ctx context * @param PA_SLA_Goal_ID id * @param trxName transaction */ public MSLAGoal (Properties ctx, int PA_SLA_Goal_ID, String trxName) { super (ctx, PA_SLA_Goal_ID, trxName); if (PA_SLA_Goal_ID == 0) setInitialDefaults(); } // MSLAGoal /** * Set the initial defaults for a new record */ private void setInitialDefaults() { setMeasureActual (Env.ZERO); setMeasureTarget (Env.ZERO); setProcessed (false); } /** * Load Constructor * @param ctx context * @param rs result set * @param trxName transaction */ public MSLAGoal (Properties ctx, ResultSet rs, String trxName) { super(ctx, rs, trxName); } // MSLAGoal /** * Get All Measures * @return array of measures */ public MSLAMeasure[] getAllMeasures() { String sql = "SELECT * FROM PA_SLA_Measure " + "WHERE PA_SLA_Goal_ID=? " + "ORDER BY DateTrx"; return getMeasures (sql); } // getAllMeasures /** * Get New Measures only * @return array of unprocessed Measures */ public MSLAMeasure[] getNewMeasures() { String sql = "SELECT * FROM PA_SLA_Measure " + "WHERE PA_SLA_Goal_ID=?" + " AND Processed='N' " + "ORDER BY DateTrx"; return getMeasures (sql); } // getNewMeasures /** * Get Measures * @param sql sql * @return array of measures */ private MSLAMeasure[] getMeasures (String sql) { ArrayList list = new ArrayList(); PreparedStatement pstmt = null; ResultSet rs = null; try { pstmt = DB.prepareStatement (sql, get_TrxName()); pstmt.setInt (1, getPA_SLA_Goal_ID()); rs = pstmt.executeQuery (); while (rs.next ()) list.add(new MSLAMeasure(getCtx(), rs, get_TrxName())); } catch (Exception e) { log.log(Level.SEVERE, sql, e); } finally { DB.close(rs, pstmt); rs = null; pstmt = null; } MSLAMeasure[] retValue = new MSLAMeasure[list.size ()]; list.toArray (retValue); return retValue; } // getMeasures /** * Is the Date in the Valid Range * @param date date * @return true if valid */ public boolean isDateValid (Timestamp date) { if (date == null) return false; if (getValidFrom() != null && date.before(getValidFrom())) return false; if (getValidTo() != null && date.after(getValidTo())) return false; return true; } // isDateValid } // MSLAGoal