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

📄 persistencestrategy.java

📁 这个weblogging 设计得比较精巧
💻 JAVA
字号:
/* * Created on Aug 13, 2003 */package org.roller.business;import java.io.Serializable;import org.roller.RollerException;import org.roller.pojos.PersistentObject;import org.roller.pojos.UserData;/** * Persistence strategy masks underlying persistence mechanism.  * State is held in thread local storage (TLS).  * When you call begin(), a PersistenceSession object is associated with your thread. * When you call release(), TLS is cleared. *  * @author Lance Lavandowska * @author Dave Johnson */public interface PersistenceStrategy extends Serializable{    /**      * Save a persistent object to storage. This method is only needed when     * a new object is to be added to storage.      */    public PersistentObject store(PersistentObject data)        throws RollerException;           /**      * Load an persistent object from storage. Object returned is a      * persistent instance, meaning that changes to it will be automatically     * saved to storage the next time that commit() is called.     */    public PersistentObject load(        String id, Class cls) throws RollerException;            /**      * Remove an object from storage.     */    public void remove(PersistentObject po)        throws RollerException;            /**      * Remove an object from storage.     */    public void remove(String id, Class cls)        throws RollerException;            /**      * Release existing resources and start new session and transaction.     */    public void begin(UserData user) throws RollerException;        /**     * Associate user with thread.     */    public void setUser(UserData user) throws RollerException;    public UserData getUser() throws RollerException;    /**      * Commit all changes made to persistent objects since last call to begin.     */	public void commit() throws RollerException;    /**     * Rollback all changes since last call to begin.     */	public void rollback() throws RollerException;        /**      * Release associated resources (database connection, session, etc.) and     * clear thread local storage.     */    public void release() throws RollerException;}

⌨️ 快捷键说明

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