/* Copyright (C) 2003-2005 Know Gate S.L. All rights reserved. C/Oña, 107 1º2 28050 Madrid (Spain) Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. The end-user documentation included with the redistribution, if any, must include the following acknowledgment: "This product includes software parts from hipergate (http://www.hipergate.org/)." Alternately, this acknowledgment may appear in the software itself, if and wherever such third-party acknowledgments normally appear. 3. The name hipergate must not be used to endorse or promote products derived from this software without prior written permission. Products derived from this software may not be called hipergate, nor may hipergate appear in their name, without prior written permission. This library 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. You should have received a copy of hipergate License with this code; if not, visit http://www.hipergate.org or mail to info@hipergate.org */ package com.knowgate.hipergate; import java.sql.SQLException; import java.util.List; import com.knowgate.jdc.JDCConnection; import com.knowgate.dataobjs.DBPersist; import com.knowgate.dataobjs.DB; import com.knowgate.dataobjs.DBSubset; /** * Product Fare * @author Sergio Montoro Ten * @version 4.0 */ public class ProductFare extends DBPersist { public ProductFare () { super(DB.k_prod_fares, "ProductFare"); } /** * Get list of fares for a WorkArea * @param oConn Database Connection * @param sGuWorkArea WorkArea GUID * @return List of fare identifiers (id_fare column) * @throws SQLException * @since 4.0 */ public static List forWorkArea(JDCConnection oConn, String sGuWorkArea) throws SQLException { DBSubset oDbs = new DBSubset(DB.k_prod_fares_lookup, DB.vl_lookup, DB.id_section+"='"+DB.id_fare+"' AND "+DB.gu_owner+"=? ORDER BY 1", 10); oDbs.load(oConn, new Object[]{sGuWorkArea}); return oDbs.getColumnAsList(0); } public static final short ClassId = 19; }