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

📄 baseportletdbentrypeer.java

📁 jetspeed源代码
💻 JAVA
📖 第 1 页 / 共 3 页
字号:
         }                              // check for conversion from boolean to int        if (criteria.containsKey(APPLICATION))        {            Object possibleBoolean = criteria.get(APPLICATION);            if (possibleBoolean instanceof Boolean)            {                if (((Boolean) possibleBoolean).booleanValue())                {                    criteria.add(APPLICATION, 1);                }                else                {                    criteria.add(APPLICATION, 0);                }            }         }                              // check for conversion from boolean to int        if (criteria.containsKey(CACHEDONURL))        {            Object possibleBoolean = criteria.get(CACHEDONURL);            if (possibleBoolean instanceof Boolean)            {                if (((Boolean) possibleBoolean).booleanValue())                {                    criteria.add(CACHEDONURL, 1);                }                else                {                    criteria.add(CACHEDONURL, 0);                }            }         }                                            // Set the correct dbName if it has not been overridden        // criteria.getDbName will return the same object if not set to        // another value so == check is okay and faster        if (criteria.getDbName() == Torque.getDefaultDB())        {            criteria.setDbName(DATABASE_NAME);        }        if (con == null)        {            BasePeer.doDelete(criteria);        }        else        {            BasePeer.doDelete(criteria, con);        }     }    /**     * Method to do selects     *     * @throws TorqueException Any exceptions caught during processing will be     *         rethrown wrapped into a TorqueException.     */    public static List doSelect(PortletDbEntry obj) throws TorqueException    {        return doSelect(buildCriteria(obj));    }    /**     * Method to do inserts     *     * @throws TorqueException Any exceptions caught during processing will be     *         rethrown wrapped into a TorqueException.     */    public static void doInsert(PortletDbEntry obj) throws TorqueException    {          obj.setPrimaryKey(doInsert(buildCriteria(obj)));          obj.setNew(false);        obj.setModified(false);    }    /**     * @param obj the data object to update in the database.     * @throws TorqueException Any exceptions caught during processing will be     *         rethrown wrapped into a TorqueException.     */    public static void doUpdate(PortletDbEntry 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(PortletDbEntry obj) throws TorqueException    {        doDelete(buildCriteria(obj));    }    /**     * Method to do inserts.  This method is to be used during a transaction,     * otherwise use the doInsert(PortletDbEntry) 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(PortletDbEntry 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(PortletDbEntry) 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(PortletDbEntry 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(PortletDbEntry) 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(PortletDbEntry 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    {        BasePortletDbEntryPeer           .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( PortletDbEntry obj )    {        Criteria criteria = new Criteria(DATABASE_NAME);              if (!obj.isNew())                criteria.add(ID, obj.getId());                  criteria.add(NAME, obj.getName());                  criteria.add(HIDDEN, obj.getHidden());                  criteria.add(CLASSNAME, obj.getClassname());                  criteria.add(TYPE, obj.getType());                  criteria.add(APPLICATION, obj.getApplication());                  criteria.add(PARENT, obj.getParentRef());                  criteria.add(URL, obj.getURL());                  criteria.add(CACHEDONURL, obj.getCachedonurl());                  criteria.add(ROLE, obj.getRole());                  criteria.add(TITLE, obj.getTitle());                  criteria.add(DESCRIPTION, obj.getDescription());                  criteria.add(IMAGE, obj.getImage());                  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 PortletDbEntry 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 PortletDbEntry retrieveByPK(ObjectKey pk)        throws TorqueException, NoRowsException, TooManyRowsException    {        Connection db = null;        PortletDbEntry 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 PortletDbEntry 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 (PortletDbEntry)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;    }                         /**     * 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 + -