/** * $TABLE_NAME$Bean constructor create an empty bean. *

* An HttpSession or a FlContext must be specified in order to save information. *

* * @exception com.edeal.frontline.FrontlineException. */ public $TABLE_NAME$Bean() throws FrontlineException { SQL_TABLE_NAME = "$TABLE_NAME$"; } /** * $TABLE_NAME$Bean constructor create an empty bean associated to a FlContext. *

* * @param flContext FlContext used to retrieve data. * @exception com.edeal.frontline.FrontlineException. */ public $TABLE_NAME$Bean(FlContext flContext) throws FrontlineException { SQL_TABLE_NAME = "$TABLE_NAME$"; this.context = flContext; } /** * $TABLE_NAME$Bean constructor create an empty bean associated to an HttpSession. *

* * @param session user http session. * @exception com.edeal.frontline.FrontlineException thrown if an error occured during FlContext initialization. */ public $TABLE_NAME$Bean(HttpSession session) throws FrontlineException { SQL_TABLE_NAME = "$TABLE_NAME$"; this.session = session; initializeContext(session); } /** * $TABLE_NAME$Bean constructor populates each properties of the bean from ID. *

* ID must exist in $TABLE_NAME$ table. If it doesn't, a FrontlineException is thrown. *

* * @param id ID of the entry in database * @param flContext FlContext used to retrieve data. * @exception com.edeal.frontline.FrontlineException any error occured during loading. * @exception com.edeal.frontline.AccessDeniedException not enough right to load entry corresponding to the id. */ public $TABLE_NAME$Bean(String id, FlContext flContext) throws FrontlineException, AccessDeniedException { SQL_TABLE_NAME = "$TABLE_NAME$"; this.context = flContext; try { populateFromID(id); } catch (FrontlineException ex) { throw new FrontlineException("[$TABLE_NAME$Bean.populateFromID()] unable to initialize bean with id = " + id + " (" + ex.getMessage() + ")"); } } /** * $TABLE_NAME$Bean constructor populates each properties of the bean from ID. *

* ID must exist in $TABLE_NAME$ table. If it doesn't, a FrontlineException is thrown. *

* * @param id ID of the entry in database * @param session user http session. * @exception com.edeal.frontline.FrontlineException any error occured during loading. * @exception com.edeal.frontline.AccessDeniedException not enough right to load entry corresponding to the id. */ public $TABLE_NAME$Bean(String id, HttpSession session) throws FrontlineException, AccessDeniedException { SQL_TABLE_NAME = "$TABLE_NAME$"; this.session = session; initializeContext(session); try { populateFromID(id); } catch (FrontlineException ex) { throw new FrontlineException("[$TABLE_NAME$Bean.populateFromID()] unable to initialize bean with id = " + id + " (" + ex.getMessage() + ")"); } } /** * $TABLE_NAME$Bean constructor populates each properties of the bean from ResultSet. *

* * @param rs ResultSet containing data of an entry in $TABLE_NAME$ table. * @param flContext FlContext used to retrieve data. * @exception com.edeal.frontline.FrontlineException any error occured during loading. * @exception com.edeal.frontline.AccessDeniedException not enough right to load entry corresponding to the ResultSet. */ public $TABLE_NAME$Bean(ResultSet rs, FlContext flContext) throws FrontlineException, AccessDeniedException { SQL_TABLE_NAME = "$TABLE_NAME$"; this.context = flContext; try { populateFromRS(rs); } catch (SQLException ex) { logger.error("Error populating from ResultSet $TABLE_NAME$ ctor", ex); } } /** * $TABLE_NAME$Bean constructor populates each properties of the bean from ResultSet. *

* * @param rs ResultSet containing data of an entry in $TABLE_NAME$ table. * @param session user http session. * @exception com.edeal.frontline.FrontlineException any error occured during loading. * @exception com.edeal.frontline.AccessDeniedException not enough right to load entry corresponding to the ResultSet. */ public $TABLE_NAME$Bean(ResultSet rs, HttpSession session) throws FrontlineException, AccessDeniedException { SQL_TABLE_NAME = "$TABLE_NAME$"; this.session = session; initializeContext(session); try { populateFromRS(rs); } catch (SQLException ex) { logger.error("Error populating from ResultSet $TABLE_NAME$ ctor", ex); } } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    BasicBean.list(null, flContext, "$TABLE_NAME$", null, null, 0, 0, false);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param flContext FlContext used to retrieve data. * @exception com.edeal.frontline.SyntaxException * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(FlContext flContext) throws SyntaxException, FrontlineException { return list(flContext, "$TABLE_NAME$", null, null, 0, 0, false); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    BasicBean.list(null, flContext, "$TABLE_NAME$", null, null, beginIndex, nbEntry, false);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param flContext FlContext used to retrieve data. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(FlContext flContext, int beginIndex, int nbEntry) throws SyntaxException, FrontlineException { return list(flContext, "$TABLE_NAME$", null, null, beginIndex, nbEntry, false); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    BasicBean.list(null, flContext, "$TABLE_NAME$", query, null, 0, 0, false);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param flContext FlContext used to retrieve data. * @param query conditions of the query. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(FlContext flContext, String[][] query) throws SyntaxException, FrontlineException { return list(flContext, "$TABLE_NAME$", query, null, 0, 0, false); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    BasicBean.list(null, flContext, "$TABLE_NAME$", query, orderBy, 0, 0, false);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param flContext FlContext used to retrieve data. * @param query conditions of the query. * @param orderBy order of the list. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(FlContext flContext, String[][] query, String[] orderBy) throws SyntaxException, FrontlineException { return list(flContext, "$TABLE_NAME$", query, orderBy, 0, 0, false); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    BasicBean.list(null, flContext, "$TABLE_NAME$", query, orderBy, beginIndex, nbEntry, false);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param flContext FlContext used to retrieve data. * @param query conditions of the query. * @param orderBy order of the list. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(FlContext flContext, String[][] query, String[] orderBy, int beginIndex, int nbEntry) throws SyntaxException, FrontlineException { return list(flContext, "$TABLE_NAME$", query, orderBy, beginIndex, nbEntry, false); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    BasicBean.list(null, flContext, "$TABLE_NAME$", query, orderBy, beginIndex, nbEntry, andThenOr);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param flContext FlContext used to retrieve data. * @param query conditions of the query. * @param orderBy order of the list. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(FlContext flContext, String[][] query, String[] orderBy, int beginIndex, int nbEntry, boolean andThenOr) throws SyntaxException, FrontlineException { return list(flContext, "$TABLE_NAME$", query, orderBy, beginIndex, nbEntry, andThenOr); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    BasicBean.list(null, flContext, "$TABLE_NAME$", query, orderBy, 0, 0, andThenOr);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param flContext FlContext used to retrieve data. * @param query conditions of the query. * @param orderBy order of the list. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(FlContext flContext, String[][] query, String[] orderBy, boolean andThenOr) throws SyntaxException, FrontlineException { return list(flContext, "$TABLE_NAME$", query, orderBy, 0, 0, andThenOr); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    BasicBean.list(null, flContext, "$TABLE_NAME$", query, null, beginIndex, nbEntry, false);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param flContext FlContext used to retrieve data. * @param query conditions of the query. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException */ public static Vector list(FlContext flContext, String[][] query, int beginIndex, int nbEntry) throws SyntaxException, FrontlineException { return list(flContext, "$TABLE_NAME$", query, null, beginIndex, nbEntry, false); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    BasicBean.list(null, flContext, "$TABLE_NAME$", query, null, beginIndex, nbEntry, andThenOr);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param flContext FlContext used to retrieve data. * @param query conditions of the query. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(FlContext flContext, String[][] query, int beginIndex, int nbEntry, boolean andThenOr) throws SyntaxException, FrontlineException { return list(flContext, "$TABLE_NAME$", query, null, beginIndex, nbEntry, andThenOr); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    BasicBean.list(null, flContext, "$TABLE_NAME$", query, null, 0, 0, andThenOr);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param flContext FlContext used to retrieve data. * @param query conditions of the query. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(FlContext flContext, String[][] query, boolean andThenOr) throws SyntaxException, FrontlineException { return list(flContext, "$TABLE_NAME$", query, null, 0, 0, andThenOr); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    BasicBean.list(null, flContext, "$TABLE_NAME$", null, orderBy, 0, 0, false);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param flContext FlContext used to retrieve data. * @param orderBy order of the list. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(FlContext flContext, String[] orderBy) throws SyntaxException, FrontlineException { return list(flContext, "$TABLE_NAME$", null, orderBy, 0, 0, false); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    BasicBean.list(null, flContext, "$TABLE_NAME$", null, orderBy, beginIndex, nbEntry, false);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param flContext FlContext used to retrieve data. * @param orderBy order of the list. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(FlContext flContext, String[] orderBy, int beginIndex, int nbEntry) throws SyntaxException, FrontlineException { return list(flContext, "$TABLE_NAME$", null, orderBy, beginIndex, nbEntry, false); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.list(session, flContext, "$TABLE_NAME$", null, null, 0, 0, false);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param session user http session. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(HttpSession session) throws SyntaxException, FrontlineException { return list(session, "$TABLE_NAME$", null, null, 0, 0, false); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.list(session, flContext, "$TABLE_NAME$", null, null, beginIndex, nbEntry, false);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param session user http session. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(HttpSession session, int beginIndex, int nbEntry) throws SyntaxException, FrontlineException { return list(session, "$TABLE_NAME$", null, null, beginIndex, nbEntry, false); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.list(session, flContext, "$TABLE_NAME$", query, null, 0, 0, false);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param session user http session. * @param query conditions of the query. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(HttpSession session, String[][] query) throws SyntaxException, FrontlineException { return list(session, "$TABLE_NAME$", query, null, 0, 0, false); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.list(session, flContext, "$TABLE_NAME$", query, orderBy, 0, 0, false);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param session user http session. * @param query conditions of the query. * @param orderBy order of the list. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(HttpSession session, String[][] query, String[] orderBy) throws SyntaxException, FrontlineException { return list(session, "$TABLE_NAME$", query, orderBy, 0, 0, false); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.list(session, flContext, "$TABLE_NAME$", query, orderBy, beginIndex, nbEntry, false);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param session user http session. * @param query conditions of the query. * @param orderBy order of the list. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(HttpSession session, String[][] query, String[] orderBy, int beginIndex, int nbEntry) throws SyntaxException, FrontlineException { return list(session, "$TABLE_NAME$", query, orderBy, beginIndex, nbEntry, false); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.list(session, flContext, "$TABLE_NAME$", query, orderBy, beginIndex, nbEntry, andThenOr);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param session user http session. * @param query conditions of the query. * @param orderBy order of the list. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(HttpSession session, String[][] query, String[] orderBy, int beginIndex, int nbEntry, boolean andThenOr) throws SyntaxException, FrontlineException { return list(session, "$TABLE_NAME$", query, orderBy, beginIndex, nbEntry, andThenOr); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.list(session, flContext, "$TABLE_NAME$", query, orderBy, 0, 0, andThenOr);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param session user http session. * @param query conditions of the query. * @param orderBy order of the list. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(HttpSession session, String[][] query, String[] orderBy, boolean andThenOr) throws SyntaxException, FrontlineException { return list(session, "$TABLE_NAME$", query, orderBy, 0, 0, andThenOr); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.list(session, flContext, "$TABLE_NAME$", query, null, beginIndex, nbEntry, false);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param session user http session. * @param query conditions of the query. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(HttpSession session, String[][] query, int beginIndex, int nbEntry) throws SyntaxException, FrontlineException { return list(session, "$TABLE_NAME$", query, null, beginIndex, nbEntry, false); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.list(session, flContext, "$TABLE_NAME$", query, null, beginIndex, nbEntry, andThenOr);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param session user http session. * @param query conditions of the query. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(HttpSession session, String[][] query, int beginIndex, int nbEntry, boolean andThenOr) throws SyntaxException, FrontlineException { return list(session, "$TABLE_NAME$", query, null, beginIndex, nbEntry, andThenOr); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.list(session, flContext, "$TABLE_NAME$", query, null, 0, 0, andThenOr);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param session user http session. * @param query conditions of the query. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(HttpSession session, String[][] query, boolean andThenOr) throws SyntaxException, FrontlineException { return list(session, "$TABLE_NAME$", query, null, 0, 0, andThenOr); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.list(session, flContext, "$TABLE_NAME$", null, orderBy, 0, 0, false);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param session user http session. * @param orderBy order of the list. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(HttpSession session, String[] orderBy) throws SyntaxException, FrontlineException { return list(session, "$TABLE_NAME$", null, orderBy, 0, 0, false); } /** * Returns a list of $TABLE_NAME$Bean. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.list(session, flContext, "$TABLE_NAME$", null, orderBy, beginIndex, nbEntry, false);
	 * 
* * @return Vector of $TABLE_NAME$Bean * @param session user http session. * @param orderBy order of the list. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#list(HttpSession, FlContext, String, String[][], String[], int, int, boolean) */ public static Vector list(HttpSession session, String[] orderBy, int beginIndex, int nbEntry) throws SyntaxException, FrontlineException { return list(session, "$TABLE_NAME$", null, orderBy, beginIndex, nbEntry, false); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    BasicBean.listSummary(null, flContext, "$TABLE_NAME$", fields, null, null, 0, 0, false);
	 * 
* * @param flContext FlContext used to retrieve data. * @param fields list of fields to be retrieved. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(FlContext flContext, String[] fields) throws SyntaxException, FrontlineException { return BasicBean.listSummary(flContext, "$TABLE_NAME$", fields, null, null, 0, 0, false); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    BasicBean.listSummary(null, flContext, "$TABLE_NAME$", fields, null, null, beginIndex, nbEntry, false);
	 * 
* * @param flContext FlContext used to retrieve data. * @param fields list of fields to be retrieved. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(FlContext flContext, String[] fields, int beginIndex, int nbEntry) throws SyntaxException, FrontlineException { return BasicBean.listSummary(flContext, "$TABLE_NAME$", fields, null, null, beginIndex, nbEntry, false); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    BasicBean.listSummary(null, flContext, "$TABLE_NAME$", fields, query, null, 0, 0, false);
	 * 
* * @param flContext FlContext used to retrieve data. * @param fields list of fields to be retrieved. * @param query conditions of the query. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(FlContext flContext, String[] fields, String[][] query) throws SyntaxException, FrontlineException { return BasicBean.listSummary(flContext, "$TABLE_NAME$", fields, query, null, 0, 0, false); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    BasicBean.listSummary(null, flContext, "$TABLE_NAME$", fields, query, oderBy, 0, 0, false);
	 * 
* * @param flContext FlContext used to retrieve data. * @param fields list of fields to be retrieved. * @param query conditions of the query. * @param orderBy order of the list. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(FlContext flContext, String[] fields, String[][] query, String[] orderBy) throws SyntaxException, FrontlineException { return BasicBean.listSummary(flContext, "$TABLE_NAME$", fields, query, orderBy, 0, 0, false); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    BasicBean.listSummary(null, flContext, "$TABLE_NAME$", fields, query, orderBy, beginIndex, nbEntry, false);
	 * 
* * @param flContext FlContext used to retrieve data. * @param fields list of fields to be retrieved. * @param query conditions of the query. * @param orderBy order of the list. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(FlContext flContext, String[] fields, String[][] query, String[] orderBy, int beginIndex, int nbEntry) throws SyntaxException, FrontlineException { return BasicBean.listSummary(flContext, "$TABLE_NAME$", fields, query, orderBy, beginIndex, nbEntry, false); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    BasicBean.listSummary(null, flContext, "$TABLE_NAME$", fields, query, orderBy, beginIndex, nbEntry, andThenOr);
	 * 
* * @param flContext FlContext used to retrieve data. * @param fields list of fields to be retrieved. * @param query conditions of the query. * @param orderBy order of the list. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(FlContext flContext, String[] fields, String[][] query, String[] orderBy, int beginIndex, int nbEntry, boolean andThenOr) throws SyntaxException, FrontlineException { return BasicBean.listSummary(flContext, "$TABLE_NAME$", fields, query, orderBy, beginIndex, nbEntry, andThenOr); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    BasicBean.listSummary(null, flContext, "$TABLE_NAME$", fields, query, orderBy, 0, 0, andThenOr);
	 * 
* * @param flContext FlContext used to retrieve data. * @param fields list of fields to be retrieved. * @param query conditions of the query. * @param orderBy order of the list. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(FlContext flContext, String[] fields, String[][] query, String[] orderBy, boolean andThenOr) throws SyntaxException, FrontlineException { return BasicBean.listSummary(flContext, "$TABLE_NAME$", fields, query, orderBy, 0, 0, andThenOr); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    BasicBean.listSummary(null, flContext, "$TABLE_NAME$", fields, query, null, beginIndex, nbEntry, false);
	 * 
* * @param flContext FlContext used to retrieve data. * @param fields list of fields to be retrieved. * @param query conditions of the query. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(FlContext flContext, String[] fields, String[][] query, int beginIndex, int nbEntry) throws SyntaxException, FrontlineException { return BasicBean.listSummary(flContext, "$TABLE_NAME$", fields, query, null, beginIndex, nbEntry, false); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    BasicBean.listSummary(null, flContext, "$TABLE_NAME$", fields, query, null, beginIndex, nbEntry, andThenOr);
	 * 
* * @param flContext FlContext used to retrieve data. * @param fields list of fields to be retrieved. * @param query conditions of the query. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(FlContext flContext, String[] fields, String[][] query, int beginIndex, int nbEntry, boolean andThenOr) throws SyntaxException, FrontlineException { return BasicBean.listSummary(flContext, "$TABLE_NAME$", fields, query, null, beginIndex, nbEntry, andThenOr); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    BasicBean.listSummary(null, flContext, "$TABLE_NAME$", fields, query, null, 0, 0, andThenOr);
	 * 
* * @param flContext FlContext used to retrieve data. * @param fields list of fields to be retrieved. * @param query conditions of the query. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(FlContext flContext, String[] fields, String[][] query, boolean andThenOr) throws SyntaxException, FrontlineException { return BasicBean.listSummary(flContext, "$TABLE_NAME$", fields, query, null, 0, 0, andThenOr); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    BasicBean.listSummary(null, flContext, "$TABLE_NAME$", fields, null, orderBy, 0, 0, false);
	 * 
* * @param flContext FlContext used to retrieve data. * @param fields list of fields to be retrieved. * @param orderBy order of the list. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(FlContext flContext, String[] fields, String[] orderBy) throws SyntaxException, FrontlineException { return BasicBean.listSummary(flContext, "$TABLE_NAME$", fields, null, orderBy, 0, 0, false); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    BasicBean.listSummary(null, flContext, "$TABLE_NAME$", fields, null, orderBy, beginIndex, nbEntry, false);
	 * 
* * @param flContext FlContext used to retrieve data. * @param fields list of fields to be retrieved. * @param orderBy order of the list. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(FlContext flContext, String[] fields, String[] orderBy, int beginIndex, int nbEntry) throws SyntaxException, FrontlineException { return BasicBean.listSummary(flContext, "$TABLE_NAME$", fields, null, orderBy, beginIndex, nbEntry, false); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.listSummary(session, flContext, "$TABLE_NAME$", fields, null, null, 0, 0, false);
	 * 
* * @param session user http session. * @param fields list of fields to be retrieved. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(HttpSession session, String[] fields) throws SyntaxException, FrontlineException { return BasicBean.listSummary(session, "$TABLE_NAME$", fields, null, null, 0, 0, false); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.listSummary(session, flContext, "$TABLE_NAME$", fields, null, null, beginIndex, nbEntry, false);
	 * 
* * @param session user http session. * @param fields list of fields to be retrieved. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(HttpSession session, String[] fields, int beginIndex, int nbEntry) throws SyntaxException, FrontlineException { return BasicBean.listSummary(session, "$TABLE_NAME$", fields, null, null, beginIndex, nbEntry, false); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.listSummary(session, flContext, "$TABLE_NAME$", fields, query, null, 0, 0, false);
	 * 
* * @param session user http session. * @param fields list of fields to be retrieved. * @param query conditions of the query. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(HttpSession session, String[] fields, String[][] query) throws SyntaxException, FrontlineException { return BasicBean.listSummary(session, "$TABLE_NAME$", fields, query, null, 0, 0, false); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.listSummary(session, flContext, "$TABLE_NAME$", fields, query, orderBy, 0, 0, false);
	 * 
* * @param session user http session. * @param fields list of fields to be retrieved. * @param query conditions of the query. * @param orderBy order of the list. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(HttpSession session, String[] fields, String[][] query, String[] orderBy) throws SyntaxException, FrontlineException { return BasicBean.listSummary(session, "$TABLE_NAME$", fields, query, orderBy, 0, 0, false); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.listSummary(session, flContext, "$TABLE_NAME$", fields, query, orderBy, beginIndex, nbEntry, false);
	 * 
* * @param session user http session. * @param fields list of fields to be retrieved. * @param query conditions of the query. * @param orderBy order of the list. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(HttpSession session, String[] fields, String[][] query, String[] orderBy, int beginIndex, int nbEntry) throws SyntaxException, FrontlineException { return BasicBean.listSummary(session, "$TABLE_NAME$", fields, query, orderBy, beginIndex, nbEntry, false); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.listSummary(session, flContext, "$TABLE_NAME$", fields, query, orderBy, beginIndex, nbEntry, andThenOr);
	 * 
* * @param session user http session. * @param fields list of fields to be retrieved. * @param query conditions of the query. * @param orderBy order of the list. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(HttpSession session, String[] fields, String[][] query, String[] orderBy, int beginIndex, int nbEntry, boolean andThenOr) throws SyntaxException, FrontlineException { return BasicBean.listSummary(session, "$TABLE_NAME$", fields, query, orderBy, beginIndex, nbEntry, andThenOr); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.listSummary(session, flContext, "$TABLE_NAME$", fields, query, orderBy, 0, 0, andThenOr);
	 * 
* * @param session user http session. * @param fields list of fields to be retrieved. * @param query conditions of the query. * @param orderBy order of the list. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(HttpSession session, String[] fields, String[][] query, String[] orderBy, boolean andThenOr) throws SyntaxException, FrontlineException { return BasicBean.listSummary(session, "$TABLE_NAME$", fields, query, orderBy, 0, 0, andThenOr); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.listSummary(session, flContext, "$TABLE_NAME$", fields, query, null, beginIndex, nbEntry, false);
	 * 
* * @param session user http session. * @param fields list of fields to be retrieved. * @param query conditions of the query. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(HttpSession session, String[] fields, String[][] query, int beginIndex, int nbEntry) throws SyntaxException, FrontlineException { return BasicBean.listSummary(session, "$TABLE_NAME$", fields, query, null, beginIndex, nbEntry, false); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.listSummary(session, flContext, "$TABLE_NAME$", fields, query, null, beginIndex, nbEntry, andThenOr);
	 * 
* * @param session user http session. * @param fields list of fields to be retrieved. * @param query conditions of the query. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(HttpSession session, String[] fields, String[][] query, int beginIndex, int nbEntry, boolean andThenOr) throws SyntaxException, FrontlineException { return BasicBean.listSummary(session, "$TABLE_NAME$", fields, query, null, beginIndex, nbEntry, andThenOr); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.listSummary(session, flContext, "$TABLE_NAME$", fields, query, null, 0, 0, andThenOr);
	 * 
* * @param session user http session. * @param fields list of fields to be retrieved. * @param query conditions of the query. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(HttpSession session, String[] fields, String[][] query, boolean andThenOr) throws SyntaxException, FrontlineException { return BasicBean.listSummary(session, "$TABLE_NAME$", fields, query, null, 0, 0, andThenOr); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.listSummary(session, flContext, "$TABLE_NAME$", fields, null, orderBy, 0, 0, false);
	 * 
* * @param session user http session. * @param fields list of fields to be retrieved. * @param orderBy order of the list. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(HttpSession session, String[] fields, String[] orderBy) throws SyntaxException, FrontlineException { return BasicBean.listSummary(session, "$TABLE_NAME$", fields, null, orderBy, 0, 0, false); } /** * Returns a list of Hashtable containing fields set in method parameter associated to their value in database. *

* This method is equivalent to : *

	 *    String contextPath = (String)session.getAttribute("contextPath");
	 *    FlContext flContext = Frontline.getContext(contextPath);
	 *    BasicBean.listSummary(session, flContext, "$TABLE_NAME$", fields, null, orderBy, beginIndex, nbEntry, false);
	 * 
* * @param session user http session. * @param fields list of fields to be retrieved. * @param orderBy order of the list. * @param beginIndex offset of the first entry to retrieve. * @param nbEntry total entries to retrieve. * @exception com.edeal.frontline.SyntaxException thrown if parameters don't have correct syntax. * @exception com.edeal.frontline.FrontlineException * @see BasicBean#listSummary(HttpSession, FlContext, String, String[], String[][], String[], int, int, boolean) */ public static Vector listSummary(HttpSession session, String[] fields, String[] orderBy, int beginIndex, int nbEntry) throws SyntaxException, FrontlineException { return BasicBean.listSummary(session, "$TABLE_NAME$", fields, null, orderBy, beginIndex, nbEntry, false); } /** * Process to be done just after entry corresponding to the bean was deleted. *

* * @exception com.edeal.frontline.FrontlineException */ protected void postDelete() throws FrontlineException {} /** * Process to be done just after populate bean. *

* * @exception com.edeal.frontline.FrontlineException */ protected void postLoad() throws FrontlineException {} /** * Process to be done just after entry corresponding to the bean was saved. *

* * @exception com.edeal.frontline.FrontlineException */ protected void postSave() throws FrontlineException {} /** * Process to be done before entry corresponding to the bean is deleted. *

* * @exception com.edeal.frontline.FrontlineException if thrown, deleting will be interrupted. */ protected void preDelete() throws FrontlineException {} /** * Process to be done just before populate bean. *

* * @exception com.edeal.frontline.FrontlineException if thrown, load will be interrupted. */ protected void preLoad() throws FrontlineException {} /** * Process to be done just before entry corresponding to the bean is saved. *

* * @exception com.edeal.frontline.FrontlineException if thrown, saving will be interrupted. */ protected void preSave() throws FrontlineException {}