⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 baseportletparameterpeer.java

📁 jetspeed源代码
💻 JAVA
📖 第 1 页 / 共 3 页
字号:
    public static void doUpdate(PortletParameter obj) throws TorqueException    {        doUpdate(buildCriteria(obj));        obj.setModified(false);    }    /**     * @param obj the data object to delete in the database.     * @throws TorqueException Any exceptions caught during processing will be     *         rethrown wrapped into a TorqueException.     */    public static void doDelete(PortletParameter obj) throws TorqueException    {        doDelete(buildCriteria(obj));    }    /**     * Method to do inserts.  This method is to be used during a transaction,     * otherwise use the doInsert(PortletParameter) method.  It will take     * care of the connection details internally.     *     * @param obj the data object to insert into the database.     * @param con the connection to use     * @throws TorqueException Any exceptions caught during processing will be     *         rethrown wrapped into a TorqueException.     */    public static void doInsert(PortletParameter obj, Connection con)        throws TorqueException    {          obj.setPrimaryKey(doInsert(buildCriteria(obj), con));          obj.setNew(false);        obj.setModified(false);    }    /**     * Method to do update.  This method is to be used during a transaction,     * otherwise use the doUpdate(PortletParameter) method.  It will take     * care of the connection details internally.     *     * @param obj the data object to update in the database.     * @param con the connection to use     * @throws TorqueException Any exceptions caught during processing will be     *         rethrown wrapped into a TorqueException.     */    public static void doUpdate(PortletParameter obj, Connection con)        throws TorqueException    {        doUpdate(buildCriteria(obj), con);        obj.setModified(false);    }    /**     * Method to delete.  This method is to be used during a transaction,     * otherwise use the doDelete(PortletParameter) method.  It will take     * care of the connection details internally.     *     * @param obj the data object to delete in the database.     * @param con the connection to use     * @throws TorqueException Any exceptions caught during processing will be     *         rethrown wrapped into a TorqueException.     */    public static void doDelete(PortletParameter obj, Connection con)        throws TorqueException    {        doDelete(buildCriteria(obj), con);    }    /**     * Method to do deletes.     *     * @param pk ObjectKey that is used DELETE from database.     * @throws TorqueException Any exceptions caught during processing will be     *         rethrown wrapped into a TorqueException.     */    public static void doDelete(ObjectKey pk) throws TorqueException    {        BasePortletParameterPeer           .doDelete(pk, (Connection) null);    }    /**     * Method to delete.  This method is to be used during a transaction,     * otherwise use the doDelete(ObjectKey) method.  It will take     * care of the connection details internally.     *     * @param pk the primary key for the object to delete in the database.     * @param con the connection to use     * @throws TorqueException Any exceptions caught during processing will be     *         rethrown wrapped into a TorqueException.     */    public static void doDelete(ObjectKey pk, Connection con)        throws TorqueException    {        doDelete(buildCriteria(pk), con);    }    /** Build a Criteria object from an ObjectKey */    public static Criteria buildCriteria( ObjectKey pk )    {        Criteria criteria = new Criteria();              criteria.add(ID, pk);          return criteria;     }    /** Build a Criteria object from the data object for this peer */    public static Criteria buildCriteria( PortletParameter obj )    {        Criteria criteria = new Criteria(DATABASE_NAME);              if (!obj.isNew())                criteria.add(ID, obj.getId());                  criteria.add(NAME, obj.getName());                  criteria.add(VALUE, obj.getValue());                  criteria.add(TYPE, obj.getType());                  criteria.add(HIDDEN, obj.getHidden());                  criteria.add(ROLE, obj.getRole());                  criteria.add(CACHEDONVALUE, obj.getCachedonvalue());                  criteria.add(CACHEDONNAME, obj.getCachedonname());                  criteria.add(TITLE, obj.getTitle());                  criteria.add(DESCRIPTION, obj.getDescription());                  criteria.add(IMAGE, obj.getImage());                  criteria.add(PORTLET_ID, obj.getPortletId());                  criteria.add(SECURITY, obj.getSecurityRef());          return criteria;    }             /**     * Retrieve a single object by pk     *     * @param pk the primary key     * @throws TorqueException Any exceptions caught during processing will be     *         rethrown wrapped into a TorqueException.     * @throws NoRowsException Primary key was not found in database.     * @throws TooManyRowsException Primary key was not found in database.     */    public static PortletParameter retrieveByPK(long pk)        throws TorqueException, NoRowsException, TooManyRowsException    {        return retrieveByPK(SimpleKey.keyFor(pk));    }      /**     * Retrieve a single object by pk     *     * @param pk the primary key     * @throws TorqueException Any exceptions caught during processing will be     *         rethrown wrapped into a TorqueException.     * @throws NoRowsException Primary key was not found in database.     * @throws TooManyRowsException Primary key was not found in database.     */    public static PortletParameter retrieveByPK(ObjectKey pk)        throws TorqueException, NoRowsException, TooManyRowsException    {        Connection db = null;        PortletParameter retVal = null;        try        {            db = Torque.getConnection(DATABASE_NAME);            retVal = retrieveByPK(pk, db);        }        finally        {            Torque.closeConnection(db);        }        return(retVal);    }    /**     * Retrieve a single object by pk     *     * @param pk the primary key     * @param con the connection to use     * @throws TorqueException Any exceptions caught during processing will be     *         rethrown wrapped into a TorqueException.     * @throws NoRowsException Primary key was not found in database.     * @throws TooManyRowsException Primary key was not found in database.     */    public static PortletParameter retrieveByPK(ObjectKey pk, Connection con)        throws TorqueException, NoRowsException, TooManyRowsException    {        Criteria criteria = buildCriteria(pk);        List v = doSelect(criteria, con);        if (v.size() == 0)        {            throw new NoRowsException("Failed to select a row.");        }        else if (v.size() > 1)        {            throw new TooManyRowsException("Failed to select only one row.");        }        else        {            return (PortletParameter)v.get(0);        }    }    /**     * Retrieve a multiple objects by pk     *     * @param pks List of primary keys     * @throws TorqueException Any exceptions caught during processing will be     *         rethrown wrapped into a TorqueException.     */    public static List retrieveByPKs(List pks)        throws TorqueException    {        Connection db = null;        List retVal = null;        try        {           db = Torque.getConnection(DATABASE_NAME);           retVal = retrieveByPKs(pks, db);        }        finally        {            Torque.closeConnection(db);        }        return(retVal);    }    /**     * Retrieve a multiple objects by pk     *     * @param pks List of primary keys     * @param dbcon the connection to use     * @throws TorqueException Any exceptions caught during processing will be     *         rethrown wrapped into a TorqueException.     */    public static List retrieveByPKs( List pks, Connection dbcon )        throws TorqueException    {        List objs = null;        if (pks == null || pks.size() == 0)        {            objs = new LinkedList();        }        else        {            Criteria criteria = new Criteria();              criteria.addIn( ID, pks );          objs = doSelect(criteria, dbcon);        }        return objs;    }                                                                                             /**     * selects a collection of PortletParameter objects pre-filled with their     * PortletDbEntry objects.     *     * This method is protected by default in order to keep the public     * api reasonable.  You can provide public methods for those you     * actually need in PortletParameterPeer.     *     * @throws TorqueException Any exceptions caught during processing will be     *         rethrown wrapped into a TorqueException.     */    protected static List doSelectJoinPortletDbEntry(Criteria c)        throws TorqueException    {        // Set the correct dbName if it has not been overridden        // c.getDbName will return the same object if not set to        // another value so == check is okay and faster        if (c.getDbName() == Torque.getDefaultDB())        {            c.setDbName(DATABASE_NAME);        }        PortletParameterPeer.addSelectColumns(c);        int offset = numColumns + 1;        PortletDbEntryPeer.addSelectColumns(c);                        c.addJoin(PortletParameterPeer.PORTLET_ID,            PortletDbEntryPeer.ID);                                                                                                          // check for conversion from boolean to int        if (c.containsKey(HIDDEN))        {            Object possibleBoolean = c.get(HIDDEN);            if (possibleBoolean instanceof Boolean)            {                if (((Boolean) possibleBoolean).booleanValue())                {                    c.add(HIDDEN, 1);                }                else                {                    c.add(HIDDEN, 0);                }            }         }                                                      // check for conversion from boolean to int        if (c.containsKey(CACHEDONVALUE))        {            Object possibleBoolean = c.get(CACHEDONVALUE);            if (possibleBoolean instanceof Boolean)            {                if (((Boolean) possibleBoolean).booleanValue())                {                    c.add(CACHEDONVALUE, 1);                }                else                {                    c.add(CACHEDONVALUE, 0);                }            }         }                                    // check for conversion from boolean to int        if (c.containsKey(CACHEDONNAME))        {            Object possibleBoolean = c.get(CACHEDONNAME);            if (possibleBoolean instanceof Boolean)            {                if (((Boolean) possibleBoolean).booleanValue())                {                    c.add(CACHEDONNAME, 1);                }                else                {                    c.add(CACHEDONNAME, 0);                }            }         }                                                                                                                    List rows = BasePeer.doSelect(c);        List results = new ArrayList();        for (int i = 0; i < rows.size(); i++)        {            Record row = (Record) rows.get(i);                            Class omClass = PortletParameterPeer.getOMClass();                    PortletParameter obj1 = (PortletParameter) PortletParameterPeer                .row2Object(row, 1, omClass);                     omClass = PortletDbEntryPeer.getOMClass();                    PortletDbEntry obj2 = (PortletDbEntry)PortletDbEntryPeer                .row2Object(row, offset, omClass);            boolean newObject = true;            for (int j = 0; j < results.size(); j++)            {                PortletParameter temp_obj1 = (PortletParameter)results.get(j);                PortletDbEntry temp_obj2 = (PortletDbEntry)temp_obj1.getPortletDbEntry();                if (temp_obj2.getPrimaryKey().equals(obj2.getPrimaryKey()))                {                    newObject = false;                    temp_obj2.addPortletParameter(obj1);                    break;                }            }            if (newObject)            {                obj2.initPortletParameters();                obj2.addPortletParameter(obj1);            }            results.add(obj1);        }        return results;    }                                  /**     * Returns the TableMap related to this peer.  This method is not     * needed for general use but a specific application could have a need.     *     * @throws TorqueException Any exceptions caught during processing will be     *         rethrown wrapped into a TorqueException.     */    protected static TableMap getTableMap()        throws TorqueException    {        return Torque.getDatabaseMap(DATABASE_NAME).getTable(TABLE_NAME);    }   }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -